virt.virt_test_utils: run_autotest - 'tar' needs relative paths to strip the leading '/'
[autotest-zwu.git] / client / samples / control.parallel
blob47a5ac9ca0fc4d4a3b8a7e4590e1f7e78bcdb8e1
1 AUTHOR = "Autotest Team <autotest@test.kernel.org>"
2 TIME = "SHORT"
3 NAME = "Sample - Parallel test execution"
4 TEST_TYPE = "client"
5 TEST_CLASS = "Kernel"
6 TEST_CATEGORY = "Functional"
8 DOC = """
9 Runs 2 client tests in parallel, with different options.
10 """
12 def kernbench():
13     job.run_test('kernbench', iterations=2, threads=5)
16 def dbench():
17     job.run_test('dbench')
20 job.parallel([kernbench], [dbench])