• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1NAME = 'Server Sleeptest'
2AUTHOR = 'mbligh@google.com (Martin Bligh)'
3TIME = 'SHORT'
4TEST_CLASS = 'Software'
5TEST_CATEGORY = 'Functional'
6TEST_TYPE = 'server'
7
8DOC = """
9runs sleep for one second on the list of machines.
10"""
11
12def run(machine):
13    host = hosts.create_host(machine)
14    job.run_test('sleeptest')
15
16job.parallel_simple(run, machines)
17