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.
54 lines
1.9 KiB
54 lines
1.9 KiB
# Copyright 2020 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.
|
|
|
|
load("//metadata/test_common.star", "test_common")
|
|
|
|
DOC = """
|
|
This is a helper test that will succeed. Used to verify various
|
|
autotest scheduling features, including pass results, dependencies, etc.
|
|
"""
|
|
|
|
TESTS = [
|
|
test_common.define_client_test(
|
|
test_name = "dummy_Pass",
|
|
purpose = "Demonstrate success methods of autotests.",
|
|
doc = DOC,
|
|
owner_emails = ["email_addr@chromium.org"],
|
|
owner_groups = ["team-mdb-group"],
|
|
suites = ["dummy", "dummyclientretries", "push_to_prod",
|
|
"skylab_staging_test", "something_else"],
|
|
#TODO: max_result_size_kb = 5000
|
|
),
|
|
|
|
test_common.define_client_test(
|
|
test_name = "dummy_Pass.actionable",
|
|
purpose = "Demonstrate success methods of autotests",
|
|
doc = DOC,
|
|
owner_emails = ["email_addr@chromium.org"],
|
|
suites = ["dummy", "dummyclientretries", "push_to_prod",
|
|
"skylab_staging_test", "something_else"],
|
|
#TODO: common_deps = ["cleanup-reboot"],
|
|
named_args = {"tag": "actionable"},
|
|
),
|
|
|
|
test_common.define_client_test(
|
|
test_name = "dummy_Pass.bluetooth",
|
|
purpose = "Demonstrate DEPENDENCIES in autotests.",
|
|
doc = DOC,
|
|
owner_emails = ["email_addr@chromium.org"],
|
|
suites = ["dummy", "push_to_prod", "skylab_staging_test"],
|
|
common_deps = ["bluetooth"],
|
|
named_args = {"tag": "bluetooth"},
|
|
),
|
|
|
|
test_common.define_client_test(
|
|
test_name = "dummy_Pass.experimental",
|
|
purpose = "Demonstrate success methods of autotests.",
|
|
doc = DOC,
|
|
owner_emails = ["email_addr@chromium.org"],
|
|
suites = ["dummy", "dummyclientretries", "something_else"],
|
|
named_args = {"tag": "experimental"},
|
|
),
|
|
]
|