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 = "ChromeOS Team" 6NAME = "stub_PassServer" 7PURPOSE = "Demonstrate success methods of autotests." 8CRITERIA = "This test will always succeed." 9ATTRIBUTES = "suite:dummy_server, suite:pvs-quick-check" 10TIME = "SHORT" 11TEST_CATEGORY = "General" 12TEST_CLASS = "stub" 13TEST_TYPE = "server" 14MAX_RESULT_SIZE_KB = 6000 15PY_VERSION = 3 16 17DOC = """ 18This is a helper test that will succeed. 19""" 20 21def run(machine): 22 job.run_test('stub_PassServer', 23 host=hosts.create_host(machine)) 24 25parallel_simple(run, machines) 26