xref: /aosp_15_r20/external/autotest/server/site_tests/stub_PassServer/control.ssp (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
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 = "ChromeOS Team"
6NAME = "stub_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, suite:infra_qual"
10TIME = "SHORT"
11TEST_CATEGORY = "General"
12TEST_CLASS = "stub"
13TEST_TYPE = "server"
14PY_VERSION = 3
15
16DOC = """
17This is a helper test that will succeed and force to use server-side packaging.
18"""
19
20def run(machine):
21    job.run_test('stub_PassServer', host=hosts.create_host(machine),
22                 expect_ssp=True)
23
24parallel_simple(run, machines)
25