1# Copyright 2021 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 = "bvt-tast-arc" 7PURPOSE = "Tests critical ARC functionality for ChromeOS CQ using Tast." 8 9TIME = "SHORT" 10TEST_CATEGORY = "General" 11TEST_CLASS = "suite" 12TEST_TYPE = "Server" 13 14DOC = """ 15This suite verifies ARC's basic functionality for ARC variant boards 16(e.g. *-arc-r) in the ChromeOS CQ, by running ARC-specific Tast integration 17tests that must always pass against a DUT. See http://go/tast for more 18information about Tast. 19 20The only Autotest test executed by this suite is tast.critical-android, which is 21a server test that executes the tast executable. The tast executable runs 22individual Tast tests. If any of these Tast tests fail, then 23tast.critical-android (and this suite) fail. """ 24 25import common 26from autotest_lib.server.cros.dynamic_suite import dynamic_suite 27 28args_dict['name'] = NAME 29args_dict['max_runtime_mins'] = 20 30args_dict['timeout_mins'] = 1440 31args_dict['job'] = job 32 33dynamic_suite.reimage_and_run(**args_dict) 34