mbligh | 75ef58b | 2009-01-23 21:55:48 +0000 | [diff] [blame] | 1 | NAME = 'Cleanup 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 cleanup function that the scheduler uses in between tests and |
| 11 | log a test failure if something goes wrong. |
| 12 | """ |
| 13 | |
| 14 | def run(machine): |
Richard Barnette | 18dc888 | 2016-08-11 17:08:48 -0700 | [diff] [blame^] | 15 | host = hosts.create_host(machine) |
mbligh | 75ef58b | 2009-01-23 21:55:48 +0000 | [diff] [blame] | 16 | job.run_test('cleanup_test', host=host, disable_sysinfo=True) |
| 17 | |
| 18 | job.parallel_simple(run, machines) |
| 19 | |