1 NAME = 'dummy_FailServer_Flaky' 2 AUTHOR = 'scottz' 3 TIME = 'SHORT' 4 TEST_CATEGORY = 'Functional' 5 TEST_CLASS = 'General' 6 TEST_TYPE = 'server' 7 ATTRIBUTES = "suite:dummyflake" 8 RETRIES = 5 9 10 11 DOC = """ 12 Test that always fails. Despite having nonzero RETRIES, will fail 13 after first run due to failure not being of type TestFailRetry. 14 """ 15 16 from autotest_lib.client.common_lib import utils 17 def run(machine): 18 host = hosts.create_host(machine) 19 job.run_test('dummy_FailServer', disable_sysinfo=True) 20 21 job.parallel_simple(run, machines) 22