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