17 lines
362 B
Plaintext
17 lines
362 B
Plaintext
|
|
NAME = 'Server Sleeptest'
|
||
|
|
AUTHOR = 'mbligh@google.com (Martin Bligh)'
|
||
|
|
TIME = 'SHORT'
|
||
|
|
TEST_CLASS = 'Software'
|
||
|
|
TEST_CATEGORY = 'Functional'
|
||
|
|
TEST_TYPE = 'server'
|
||
|
|
PY_VERSION = 3
|
||
|
|
DOC = """
|
||
|
|
runs sleep for one second on the list of machines.
|
||
|
|
"""
|
||
|
|
|
||
|
|
def run(machine):
|
||
|
|
host = hosts.create_host(machine)
|
||
|
|
job.run_test('sleeptest')
|
||
|
|
|
||
|
|
job.parallel_simple(run, machines)
|