Daniel Erat | feabe10 | 2018-07-20 18:44:00 -0700 | [diff] [blame] | 1 | # 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 | |
| 5 | AUTHOR = "Chrome OS Team" |
| 6 | NAME = "bvt-tast-android-pfq" |
| 7 | PURPOSE = "Tests critical ARC functionality for Android PFQ using Tast." |
| 8 | |
| 9 | TIME = "SHORT" |
| 10 | TEST_CATEGORY = "General" |
| 11 | TEST_CLASS = "suite" |
| 12 | TEST_TYPE = "Server" |
| 13 | |
| 14 | DOC = """ |
| 15 | This suite verifies ARC's basic functionality for the Android Pre-Flight Queue |
| 16 | by running ARC-specific Tast integration tests that must always pass against a |
| 17 | DUT. See http://go/tast for more information about Tast. |
| 18 | |
Shuhei Takahashi | ea32099 | 2019-04-15 13:09:04 +0900 | [diff] [blame] | 19 | The only Autotest test executed by this suite is tast.critical-android, which is |
Daniel Erat | feabe10 | 2018-07-20 18:44:00 -0700 | [diff] [blame] | 20 | a server test that executes the tast executable. The tast executable runs |
Shuhei Takahashi | ea32099 | 2019-04-15 13:09:04 +0900 | [diff] [blame] | 21 | individual Tast tests. If any of these Tast tests fail, then |
| 22 | tast.critical-android (and this suite) fail. """ |
Daniel Erat | feabe10 | 2018-07-20 18:44:00 -0700 | [diff] [blame] | 23 | |
| 24 | import common |
| 25 | from autotest_lib.server.cros.dynamic_suite import dynamic_suite |
| 26 | |
| 27 | args_dict['name'] = NAME |
| 28 | args_dict['max_runtime_mins'] = 20 |
| 29 | args_dict['timeout_mins'] = 1440 |
| 30 | args_dict['job'] = job |
| 31 | |
| 32 | dynamic_suite.reimage_and_run(**args_dict) |