1NAME = '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): 15 host = hosts.create_host(machine, initialize=False) 16 job.run_test('cleanup_test', host=host, disable_sysinfo=True) 17 18job.parallel_simple(run, machines) 19 20