1# Copyright 2020 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 = "ckclark@chromium.org, chromeos-runtime-probe@google.com" 6NAME = "runtime_probe_perbuild" 7PURPOSE = "Runtime Probe tests" 8 9TIME = "SHORT" 10TEST_CATEGORY = "Functional" 11TEST_CLASS = "suite" 12TEST_TYPE = "Server" 13 14DOC = """ 15ChromeOS Runtime Probe tests. 16 17This suite is used as an entry point for runtime_probe_perbuild, which passes 18cros labels in host info store as references to runtime probe tast tests for 19comparison with probed component names. 20""" 21 22import common 23from autotest_lib.server.cros.dynamic_suite import dynamic_suite 24 25 26# Values specified in this bug template will override default values when 27# filing bugs on tests that are a part of this suite. If left unspecified 28# the bug filer will fallback to its defaults. 29_BUG_TEMPLATE = { 30 'labels': ['Type-Bug', 'Cros-Runtime-Probe-Test'], 31 'owner': 'ckclark@chromium.org', 32 'cc': ['chromeos-runtime-probe@google.com'] 33} 34 35args_dict['max_runtime_mins'] = 10 36args_dict['timeout_mins'] = 10 37args_dict['file_bugs'] = True 38args_dict['name'] = 'runtime_probe_perbuild' 39args_dict['job'] = job 40args_dict['add_experimental'] = True 41args_dict['bug_template'] = _BUG_TEMPLATE 42 43dynamic_suite.reimage_and_run(**args_dict) 44