Home | History | Annotate | Download | only in dummy_PassServer
      1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 AUTHOR = "Chrome OS Team"
      6 NAME = "dummy_PassServer_nossp"
      7 PURPOSE = "Demonstrate success methods of autotests."
      8 CRITERIA = "This test will always succeed."
      9 ATTRIBUTES = "suite:dummy_server"
     10 SUITE = "dummy_server"
     11 TIME = "SHORT"
     12 TEST_CATEGORY = "General"
     13 TEST_CLASS = "dummy"
     14 TEST_TYPE = "server"
     15 # Force not to use server side package for this test.
     16 REQUIRE_SSP = False
     17 
     18 DOC = """
     19 This is a helper test that will succeed and force not to use server side
     20 packaging.
     21 """
     22 
     23 def run(machine):
     24     job.run_test('dummy_PassServer',
     25                  host=hosts.create_host(machine))
     26 
     27 parallel_simple(run, machines)