blob: a6901bd4e683f7a49c53451e76e2046e4ef061e8 [file] [log] [blame]
James Cook25e6a452017-06-27 14:01:15 -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 = "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
James Cook25e6a452017-06-27 14:01:15 -070040from autotest_lib.server.cros.dynamic_suite import dynamic_suite
41
42
43args_dict['max_runtime_mins'] = 15
44args_dict['name'] = 'chrome-informational'
45args_dict['job'] = job
James Cook25e6a452017-06-27 14:01:15 -070046
47dynamic_suite.reimage_and_run(**args_dict)