• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1AUTHOR = "Autotest Team <autotest@test.kernel.org>"
2TIME = "SHORT"
3NAME = "Sample - Parallel test execution"
4TEST_TYPE = "client"
5TEST_CLASS = "Kernel"
6TEST_CATEGORY = "Functional"
7
8DOC = """
9Runs 2 client tests in parallel, with different options.
10"""
11
12def kernbench():
13    job.run_test('kernbench', iterations=2, threads=5)
14
15
16def dbench():
17    job.run_test('dbench')
18
19
20job.parallel([kernbench], [dbench])
21