Home | History | Annotate | Download | only in dummy_FailServer
      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 SUITE = 'dummyflake'
      9 RETRIES = 5
     10 
     11 
     12 DOC = """
     13 Test that always fails. Despite having nonzero RETRIES, will fail
     14 after first run due to failure not being of type TestFailRetry.
     15 """
     16 
     17 from autotest_lib.client.common_lib import utils
     18 def run(machine):
     19     host = hosts.create_host(machine)
     20     job.run_test('dummy_FailServer', disable_sysinfo=True)
     21 
     22 job.parallel_simple(run, machines)
     23