Home | History | Annotate | Download | only in verify_test
      1 NAME = 'Verify 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 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)
     18     job.run_test('verify_test', host=host, disable_sysinfo=True)
     19 
     20 job.parallel_simple(run, machines)
     21 
     22