blob: 2a546b00515f7936a9a5a7f18f080dfbd6c54485 [file] [log] [blame]
Daniel Eratfeabe102018-07-20 18:44:00 -07001# Copyright 2018 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-chrome-pfq"
7PURPOSE = "Tests critical Chrome functionality for Chrome PFQ using Tast."
8
9TIME = "SHORT"
10TEST_CATEGORY = "General"
11TEST_CLASS = "suite"
12TEST_TYPE = "Server"
13
14DOC = """
15This suite verifies Chrome's basic functionality for the Chrome Pre-Flight Queue
16by running all Chrome and ARC (since ARC depends on Chrome) Tast integration
17tests that must always pass against a DUT. See http://go/tast for more
18information about Tast.
19
Shuhei Takahashiea320992019-04-15 13:09:04 +090020The only Autotest tests executed by this suite are tast.critical-chrome and
21tast.critical-android, which are server tests that execute the tast executable.
Daniel Eratfeabe102018-07-20 18:44:00 -070022The tast executable runs individual Tast tests. If any of these Tast tests fail,
Shuhei Takahashiea320992019-04-15 13:09:04 +090023then the corresponding tast.critical test (and this suite) fail.
Daniel Eratfeabe102018-07-20 18:44:00 -070024"""
25
26import common
27from autotest_lib.server.cros.dynamic_suite import dynamic_suite
28
29args_dict['name'] = NAME
30args_dict['max_runtime_mins'] = 20
31args_dict['timeout_mins'] = 1440
32args_dict['job'] = job
33
34dynamic_suite.reimage_and_run(**args_dict)