1# Copyright 2019 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 = "Chrome OS Team" 6NAME = "bvt-tast-informational" 7PURPOSE = "Runs informational Tast tests." 8 9TIME = "SHORT" 10TEST_CATEGORY = "General" 11TEST_CLASS = "suite" 12TEST_TYPE = "Server" 13 14DOC = """ 15This suite is used to run all informational Tast integration tests (exercising 16ARC, Chrome, and the OS itself) on release (a.k.a. canary) builders. See 17http://go/tast for more information about Tast. 18 19The only Autotest tests executed by this suite are tast.informational-*, which 20are server tests that execute the tast executable. The tast executable runs 21individual Tast tests. The results of these Tast tests are available via 22Stainless. The tast.informational-* tests and this suite always pass as long as 23the tast executable itself does not report failure (due to e.g. a lost SSH 24connection to the DUT or a timeout). 25""" 26 27import common 28from autotest_lib.server.cros.dynamic_suite import dynamic_suite 29 30args_dict['name'] = NAME 31args_dict['max_runtime_mins'] = 60 32args_dict['timeout_mins'] = 1440 33args_dict['job'] = job 34 35dynamic_suite.reimage_and_run(**args_dict) 36