OLD | NEW |
1 AUTHOR = "Eric Li <ericli@chromium.org>" | 1 AUTHOR = "Eric Li <ericli@chromium.org>" |
2 NAME = "AutotestClientSetup" | 2 NAME = "AutotestClientSetup" |
3 TEST_CATEGORY = "Functional" | 3 TEST_CATEGORY = "Functional" |
4 TEST_CLASS = "General" | 4 TEST_CLASS = "General" |
5 TEST_TYPE = "client" | 5 TEST_TYPE = "client" |
6 TIME = "MEDIUM" | 6 TIME = "MEDIUM" |
7 DOC="""Setup a bunch of autotest tests into a platform dependent chromeos build | 7 DOC="""Setup a bunch of autotest tests into a platform dependent chromeos build |
8 (chroot) environment. | 8 (chroot) environment. |
9 """ | 9 """ |
10 | 10 |
11 from autotest_lib.client.bin import setup_job | 11 from autotest_lib.client.bin import setup_job |
12 | 12 |
13 setup_job.initialize(job) | 13 setup_job.initialize(job) |
14 | 14 |
15 # include all tests here. | 15 # include all tests here. |
16 chromeos_tests=['bonnie', | 16 chromeos_tests=['bonnie', |
17 'compilebench', | 17 'compilebench', |
18 'dbench', | 18 'dbench', |
19 'disktest', | 19 'disktest', |
20 'ltp', | 20 'ltp', |
21 'unixbench', | 21 'unixbench', |
22 'storage_Fio', | 22 'storage_Fio', |
| 23 'storage_SsdDetection', |
23 ] | 24 ] |
24 | 25 |
25 for cros_test in chromeos_tests: | 26 for cros_test in chromeos_tests: |
26 setup_job.setup_test(cros_test, job) | 27 setup_job.setup_test(cros_test, job) |
27 | 28 |
OLD | NEW |