You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
790 B
24 lines
790 B
# Copyright 2016 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
AUTHOR = "Chrome OS Team"
|
|
NAME = "dummy_PassServer.ssp"
|
|
PURPOSE = "Demonstrate success methods of autotests."
|
|
CRITERIA = "This test will always succeed when running in a container."
|
|
ATTRIBUTES = "suite:dummy_server, suite:push_to_prod, suite:skylab_staging_test, suite:dev_drone_image_test"
|
|
TIME = "SHORT"
|
|
TEST_CATEGORY = "General"
|
|
TEST_CLASS = "dummy"
|
|
TEST_TYPE = "server"
|
|
|
|
DOC = """
|
|
This is a helper test that will succeed and force to use server-side packaging.
|
|
"""
|
|
|
|
def run(machine):
|
|
job.run_test('dummy_PassServer', host=hosts.create_host(machine),
|
|
expect_ssp=True)
|
|
|
|
parallel_simple(run, machines)
|