Home | History | Annotate | Download | only in cleanup_test
      1 NAME = 'Cleanup Test'
      2 AUTHOR = 'jorlow (a] 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):
     15     host = hosts.create_host(machine)
     16     job.run_test('cleanup_test', host=host, disable_sysinfo=True)
     17 
     18 job.parallel_simple(run, machines)
     19 
     20