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 5AUTHOR = "Chrome OS Team" 6NAME = "dummy_PassServer_nossp" 7PURPOSE = "Demonstrate success methods of autotests." 8CRITERIA = "This test will always succeed." 9ATTRIBUTES = ( 10 "suite:dummy_server," 11 " suite:dummy_server_nossp," 12 " suite:skylab_staging_test" 13) 14TIME = "SHORT" 15TEST_CATEGORY = "General" 16TEST_CLASS = "dummy" 17TEST_TYPE = "server" 18# Force not to use server side package for this test. 19REQUIRE_SSP = False 20 21DOC = """ 22This is a helper test that will succeed and force not to use server side 23packaging. 24""" 25 26def run(machine): 27 job.run_test('dummy_PassServer', host=hosts.create_host(machine), 28 expect_ssp=False) 29 30parallel_simple(run, machines) 31