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