blob: 9ebdf4fb2fe04d87831d90d34cb25ea26950dbfc [file] [log] [blame]
David Haddock59110312017-09-20 17:55:59 -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 = "bvt-installer"
7PURPOSE = "Build verification of ChromeOS pieces related to Installer."
8
9TIME = "MEDIUM"
10TEST_CATEGORY = "General"
11TEST_CLASS = "suite"
12TEST_TYPE = "Server"
13
14DOC = """
15This suite is used for testing pieces in ChromeOS that would be covered by
16the Internals>Installer component (e.g Powerwash). It is run on
17the canary and release builders, but not the CQ or PFQ's. These tests are
18being split from bvt-inline as their average runtime is not acceptable for
19that suite.
20
21@param build: The name of the image to test.
22 Ex: veyron_minnie-release/R60-9575.0.0
23@param board: The board to test on. Ex: veyron_minnie
24@param pool: The pool of machines to utilize for scheduling.
25"""
26
27import common
28from autotest_lib.server.cros import provision
29from autotest_lib.server.cros.dynamic_suite import dynamic_suite
30
31args_dict['max_runtime_mins'] = 60
32args_dict['name'] = 'bvt-installer'
33args_dict['job'] = job
34args_dict['version_prefix'] = provision.CROS_VERSION_PREFIX
35
36dynamic_suite.reimage_and_run(**args_dict)