blob: 143a6a632a30d4e7bd4e8e292dbf463cece9f7b0 [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
David Haddock59110312017-09-20 17:55:59 -070028from autotest_lib.server.cros.dynamic_suite import dynamic_suite
29
30args_dict['max_runtime_mins'] = 60
31args_dict['name'] = 'bvt-installer'
32args_dict['job'] = job
David Haddock59110312017-09-20 17:55:59 -070033
Richard Barnette17e1f562018-06-05 17:10:11 -070034dynamic_suite.reimage_and_run(**args_dict)