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 = "chrome-informational" 7PURPOSE = "Informational tests of chrome" 8 9TIME = "SHORT" 10TEST_CATEGORY = "General" 11TEST_CLASS = "suite" 12TEST_TYPE = "Server" 13 14DOC = """ 15This suite contains informational tests that: 16 17* Test Chrome, not Chrome OS 18* Require real hardware (for example, to test GPU process init 19or display management) 20* Should not block uprev of Chrome into Chrome OS 21 22Chrome tests that do not require real hardware should be 23implemented in the Chrome repository as unit_tests or browser_tests. 24 25Tests in this suite are usually for experimental projects being 26implemented behind a flag. Once the Chrome code stabilizes and 27the flag is on-by-default the tests should be moved to bvt-cq 28to block Chrome uprev if they fail. 29 30Tests in this suite must be SHORT and should not require any 31special lab resources. 32 33@param build: The name of the image to test. 34 Ex: veyron_minnie-release/R60-9575.0.0 35@param board: The board to test on. Ex: veyron_minnie 36@param pool: The pool of machines to utilize for scheduling. 37""" 38 39import common 40from autotest_lib.server.cros import provision 41from autotest_lib.server.cros.dynamic_suite import dynamic_suite 42 43 44args_dict['max_runtime_mins'] = 15 45args_dict['name'] = 'chrome-informational' 46args_dict['job'] = job 47args_dict['version_prefix'] = provision.CROS_VERSION_PREFIX 48 49dynamic_suite.reimage_and_run(**args_dict) 50