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 " suite:dev_drone_image_test" 14) 15TIME = "SHORT" 16TEST_CATEGORY = "General" 17TEST_CLASS = "dummy" 18TEST_TYPE = "server" 19# Force not to use server side package for this test. 20REQUIRE_SSP = False 21 22DOC = """ 23This is a helper test that will succeed and force not to use server side 24packaging. 25""" 26 27def run(machine): 28 job.run_test('dummy_PassServer', host=hosts.create_host(machine), 29 expect_ssp=False) 30 31parallel_simple(run, machines) 32