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