blob: 451ffde0b2963c375d2c6eab011c3cfc0697beab [file] [log] [blame]
mbligh75ef58b2009-01-23 21:55:48 +00001NAME = 'Cleanup Test'
2AUTHOR = 'jorlow@google.com (Jeremy Orlow)'
3TIME = 'SHORT'
4TEST_CLASS = 'Software'
5TEST_CATEGORY = 'Functional'
6TEST_TYPE = 'server'
7RUN_VERIFY = False
8
9DOC = """
10Run the same cleanup function that the scheduler uses in between tests and
11log a test failure if something goes wrong.
12"""
13
14def run(machine):
Richard Barnette18dc8882016-08-11 17:08:48 -070015 host = hosts.create_host(machine)
mbligh75ef58b2009-01-23 21:55:48 +000016 job.run_test('cleanup_test', host=host, disable_sysinfo=True)
17
18job.parallel_simple(run, machines)
19