1NAME = 'Verify 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 verify function that the scheduler uses. If you're running this 11test from within a scheudler, the only discernable difference is that the 12result will show up in TKO and it will _not_ block other tests from running 13if it fails. 14""" 15 16def run(machine): 17 host = hosts.create_host(machine) 18 job.run_test('verify_test', host=host, disable_sysinfo=True) 19 20job.parallel_simple(run, machines) 21 22