blob: 8726c0df53575705c99df93354ac7b2283341804 [file] [log] [blame]
mbligh79a2ee12008-11-05 22:07:38 +00001NAME = '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):
Richard Barnette18dc8882016-08-11 17:08:48 -070017 host = hosts.create_host(machine)
mbligh79a2ee12008-11-05 22:07:38 +000018 job.run_test('verify_test', host=host, disable_sysinfo=True)
19
20job.parallel_simple(run, machines)
21