blob: 0bf2cbad260ad6bc1c300edb7b544437e92077a7 [file] [log] [blame]
Xuhui Pengc21981d2017-09-01 17:34:23 -07001# Copyright 2017 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 = "arc-unit-test"
7PURPOSE = "Run the unit test of ARC++."
8
9TIME = "SHORT"
10TEST_CATEGORY = "General"
11TEST_CLASS = "suite"
12TEST_TYPE = "Server"
13
14DOC = """
15This tests suite is a suite for unit tests of ARC++.
16
17@param build: The name of the image to test.
18 Ex: veyron_minnie-release/R60-9575.0.0
19@param board: The board to test on. Ex: veyron_minnie
20@param pool: The pool of machines to utilize for scheduling.
21"""
22
23import common
Xuhui Pengc21981d2017-09-01 17:34:23 -070024from autotest_lib.server.cros.dynamic_suite import dynamic_suite
25
26args_dict['max_runtime_mins'] = 30
27args_dict['name'] = NAME
28args_dict['job'] = job
Xuhui Pengc21981d2017-09-01 17:34:23 -070029
30dynamic_suite.reimage_and_run(**args_dict)