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