You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
325 B
18 lines
325 B
NAME = 'dummy_FailServer'
|
|
AUTHOR = 'scottz'
|
|
TIME = 'SHORT'
|
|
TEST_CATEGORY = 'Functional'
|
|
TEST_CLASS = 'General'
|
|
TEST_TYPE = 'server'
|
|
|
|
|
|
DOC = """
|
|
Test that always fails.
|
|
"""
|
|
|
|
def run(machine):
|
|
host = hosts.create_host(machine)
|
|
job.run_test('dummy_FailServer', disable_sysinfo=False)
|
|
|
|
job.parallel_simple(run, machines)
|