Home | History | Annotate | Download | only in dummy_PassServer
      1 # Copyright 2016 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.ssp"
      7 PURPOSE = "Demonstrate success methods of autotests."
      8 CRITERIA = "This test will always succeed when running in a container."
      9 ATTRIBUTES = "suite:push_to_prod, suite:dummy_server"
     10 TIME = "SHORT"
     11 TEST_CATEGORY = "General"
     12 TEST_CLASS = "dummy"
     13 TEST_TYPE = "server"
     14 
     15 DOC = """
     16 This is a helper test that will succeed and force to use server-side packaging.
     17 """
     18 
     19 def run(machine):
     20     job.run_test('dummy_PassServer', host=hosts.create_host(machine),
     21                  force_ssp=True)
     22 
     23 parallel_simple(run, machines)