xref: /aosp_15_r20/external/autotest/autotest_lib/test_suites/control.bvt-tast-android-pfq (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
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
5AUTHOR = "ChromeOS 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
19The following Autotest tests are executed by this suite:
20- tast.critical-android, which is a server test that executes the tast
21executable. The tast executable runs individual Tast tests. If any of these Tast
22tests fail, then tast.critical-android (and this suite) fail.
23- tast.arc-data-collector, which launches the arc.DataCollector Tast test to
24collect runtime artifacts from the DUT for future optimization."""
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)
35