| NAME = 'Server Sleeptest' | |
| AUTHOR = '[email protected] (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) |