Home | History | Annotate | Download | only in test_suites
      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 
      5 AUTHOR = "Chrome OS Team"
      6 NAME = "bvt-inline"
      7 PURPOSE = "Test critical functionality."
      8 
      9 TIME = "SHORT"
     10 TEST_CATEGORY = "General"
     11 TEST_CLASS = "suite"
     12 TEST_TYPE = "Server"
     13 
     14 DOC = """
     15 This is the portion of the Build Verification Test suite required
     16 to pass before any other tests may run.  Test failures in this
     17 suite trigger automatic actions:
     18   * Failures in the Commit Queue or Pre-Flight Queue fail the build,
     19     and block running tests from the bvt-cq suite.
     20   * Failures in the canary turn the tree red, block all other tests
     21     for the build, and generally mean that QA cannot further
     22     evaluate the build's fitness for release.
     23 
     24 Requirements for a test to be in this suite:
     25  1. The test should be SHORT, and should not require any specialized
     26     lab resources.
     27  2. A test failure should indicate one or more of the following
     28     impacts is possible:
     29      * The failure may impact the stability of the test lab.
     30      * The failure may prevent discovery of other bugs.
     31      * The failure may block ordinary development tasks.
     32  3. A test failure must reliably indicate a bug in the product, and
     33     not a bug in the test.
     34 
     35 @param build: The name of the image to test.
     36               Ex: x86-mario-release/R17-1412.33.0-a1-b29
     37 @param board: The board to test on. Ex: x86-mario
     38 @param pool: The pool of machines to utilize for scheduling. If pool=None
     39              board is used.
     40 @param check_hosts: require appropriate live hosts to exist in the lab.
     41 @param SKIP_IMAGE: (optional) If present and True, don't re-image devices.
     42 """
     43 
     44 import common
     45 from autotest_lib.server.cros import provision
     46 from autotest_lib.server.cros.dynamic_suite import dynamic_suite
     47 
     48 
     49 # Values specified in this bug template will override default values when
     50 # filing bugs on tests that are a part of this suite. If left unspecified
     51 # the bug filer will fallback to it's defaults.
     52 _BUG_TEMPLATE = {
     53     'labels': ['bvt'],
     54     'owner': '',
     55     'status': None,
     56     'summary': None,
     57     'title': None,
     58 }
     59 
     60 args_dict['max_runtime_mins'] = 30
     61 args_dict['name'] = 'bvt-inline'
     62 args_dict['job'] = job
     63 args_dict['add_experimental'] = True
     64 args_dict['version_prefix'] = provision.CROS_VERSION_PREFIX
     65 args_dict['bug_template'] = _BUG_TEMPLATE
     66 
     67 dynamic_suite.reimage_and_run(**args_dict)
     68