You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
407 B
21 lines
407 B
AUTHOR = "Autotest Team <autotest@test.kernel.org>"
|
|
TIME = "SHORT"
|
|
NAME = "Sample - Parallel test execution"
|
|
TEST_TYPE = "client"
|
|
TEST_CLASS = "Kernel"
|
|
TEST_CATEGORY = "Functional"
|
|
|
|
DOC = """
|
|
Runs 2 client tests in parallel, with different options.
|
|
"""
|
|
|
|
def kernbench():
|
|
job.run_test('kernbench', iterations=2, threads=5)
|
|
|
|
|
|
def dbench():
|
|
job.run_test('dbench')
|
|
|
|
|
|
job.parallel([kernbench], [dbench])
|