xref: /aosp_15_r20/external/autotest/server/site_tests/stub_PassServer/control.nossp (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
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_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 = "stub"
18TEST_TYPE = "server"
19# Force not to use server side package for this test.
20REQUIRE_SSP = False
21PY_VERSION = 3
22
23DOC = """
24This is a helper test that will succeed and force not to use server side
25packaging.
26"""
27
28def run(machine):
29    job.run_test('stub_PassServer', host=hosts.create_host(machine),
30                 expect_ssp=False)
31
32parallel_simple(run, machines)
33