Home | History | Annotate | Download | only in dummy_FailServer
      1 NAME = 'dummy_FailServer'
      2 AUTHOR = 'scottz'
      3 TIME = 'SHORT'
      4 TEST_CATEGORY = 'Functional'
      5 TEST_CLASS = 'General'
      6 TEST_TYPE = 'server'
      7 
      8 
      9 DOC = """
     10 Test that always fails.
     11 """
     12 
     13 def run(machine):
     14     host = hosts.create_host(machine)
     15     job.run_test('dummy_FailServer', disable_sysinfo=False)
     16 
     17 job.parallel_simple(run, machines)
     18