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