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