mbligh | 79a2ee1 | 2008-11-05 22:07:38 +0000 | [diff] [blame^] | 1 | NAME = 'Verify Test' |
| 2 | AUTHOR = 'jorlow@google.com (Jeremy Orlow)' |
| 3 | TIME = 'SHORT' |
| 4 | TEST_CLASS = 'Software' |
| 5 | TEST_CATEGORY = 'Functional' |
| 6 | TEST_TYPE = 'server' |
| 7 | RUN_VERIFY = False |
| 8 | |
| 9 | DOC = """ |
| 10 | Run the same verify function that the scheduler uses. If you're running this |
| 11 | test from within a scheudler, the only discernable difference is that the |
| 12 | result will show up in TKO and it will _not_ block other tests from running |
| 13 | if it fails. |
| 14 | """ |
| 15 | |
| 16 | def run(machine): |
| 17 | host = hosts.create_host(machine, initialize=False) |
| 18 | job.run_test('verify_test', host=host, disable_sysinfo=True) |
| 19 | |
| 20 | job.parallel_simple(run, machines) |
| 21 | |