1# 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 24from autotest_lib.server.cros import provision 25from autotest_lib.server.cros.dynamic_suite import dynamic_suite 26 27args_dict['max_runtime_mins'] = 30 28args_dict['name'] = NAME 29args_dict['job'] = job 30args_dict['version_prefix'] = provision.CROS_VERSION_PREFIX 31 32dynamic_suite.reimage_and_run(**args_dict) 33