1NAME = 'Flaky server side test' 2AUTHOR = 'scottz' 3TIME = 'SHORT' 4TEST_CATEGORY = 'Functional' 5TEST_CLASS = 'General' 6TEST_TYPE = 'server' 7ATTRIBUTES = "suite:dummyflake" 8RETRIES = 2 9 10 11DOC = """ 12Test that randomly fails half the time. Will be attempted 3 times. 13""" 14 15from autotest_lib.client.common_lib import utils 16def run(machine): 17 host = hosts.create_host(machine) 18 job.run_test('flaky_test', disable_sysinfo=True) 19 20job.parallel_simple(run, machines) 21