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