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 = "dbeckett" 6NAME = "infra_qual" 7PURPOSE = "Suite to certify changes in autotest infra prior prod." 8 9TIME = "SHORT" 10TEST_CATEGORY = "General" 11TEST_CLASS = "suite" 12TEST_TYPE = "Server" 13 14DOC = """ 15This suite is intended to run a set of tests that will certify major autotest 16infrastructure changes/updates do not break major test libraries, such as 17servo, network, platform, bluetooth, etc. 18""" 19 20import common 21from autotest_lib.server.cros.dynamic_suite import dynamic_suite 22 23args_dict['name'] = NAME 24args_dict['job'] = job 25 26dynamic_suite.reimage_and_run(**args_dict) 27