1# Copyright (c) 2014 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 = "bvt-cq"
7PURPOSE = "Test functionality required by the Commit Queue."
8
9TIME = "SHORT"
10TEST_CATEGORY = "General"
11TEST_CLASS = "suite"
12TEST_TYPE = "Server"
13
14DOC = """
15This is the portion of the Build Verification Test suite required to
16pass the Chrome OS Commit Queue and Pre-Flight Queue.  Test failures
17prevent code from being included in the tree or in canary builds:
18  * Chrome OS CLs must pass these tests prior to being accepted into
19    the tree.
20  * A new Chrome build must pass these tests prior to the build
21    being included in a Chrome OS canary build.
22
23Requirements for a test to be in this suite:
24 1. The test should be SHORT, and should not require any specialized
25    lab resources.
26 2. A test failure should indicate that the product is not fit for
27    release on any channel.
28 3. A test failure must reliably indicate a bug in the product, and
29    not a bug in the test.
30 4. The test must be hermetic.  That is, the test should have no
31    dependencies on external network resources.
32
33@param build: The name of the image to test.
34              Ex: x86-mario-release/R17-1412.33.0-a1-b29
35@param board: The board to test on. Ex: x86-mario
36@param pool: The pool of machines to utilize for scheduling. If pool=None
37             board is used.
38@param check_hosts: require appropriate live hosts to exist in the lab.
39@param SKIP_IMAGE: (optional) If present and True, don't re-image devices.
40"""
41
42import common
43from autotest_lib.server.cros.dynamic_suite import dynamic_suite
44
45
46# Values specified in this bug template will override default values when
47# filing bugs on tests that are a part of this suite. If left unspecified
48# the bug filer will fallback to it's defaults.
49_BUG_TEMPLATE = {
50    'labels': ['bvt'],
51    'owner': '',
52    'status': None,
53    'summary': None,
54    'title': None,
55}
56
57args_dict['max_runtime_mins'] = 30
58args_dict['name'] = 'bvt-cq'
59args_dict['job'] = job
60args_dict['add_experimental'] = True
61args_dict['bug_template'] = _BUG_TEMPLATE
62
63dynamic_suite.reimage_and_run(**args_dict)
64