blob: 9dd9faeae3f04ac5e632ab1877453a3c9672e3b9 [file] [log] [blame]
Mike Trutye51d4362012-07-24 15:15:15 -05001# Copyright (c) 2012 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"
Vadim Bendebury75259502013-01-22 22:43:47 -08006NAME = "faft_ec"
Mike Trutye51d4362012-07-24 15:15:15 -05007PURPOSE = "Test hard-to-automate firmware and ec scenarios."
Vadim Bendebury75259502013-01-22 22:43:47 -08008CRITERIA = "All tests with SUITE=faft_ec must pass."
Mike Trutye51d4362012-07-24 15:15:15 -05009
10TIME = "SHORT"
11TEST_CATEGORY = "General"
12TEST_CLASS = "suite"
13TEST_TYPE = "Server"
14
15DOC = """
Vadim Bendebury75259502013-01-22 22:43:47 -080016This is a faft (FULLY AUTOMATED FIRMWARE TEST) suite. The tests in this suite
17verify the Chrome OS EC operation, that valid boot scenarios progress properly
18(with state progress checks) and that error scenarios (corrupted blobs) are
19caught as expected. Some of these test failures should close the tree as they
20may imply that the system is unbootable and further tests will only become
21hung or blocked. Other tests verify all of the features (some of them security
22related) are functioning.
Mike Trutye51d4362012-07-24 15:15:15 -050023
24@param build: The name of the image to test.
25 Ex: x86-mario-release/R17-1412.33.0-a1-b29
26@param board: The board to test on. Ex: x86-mario
27@param pool: The pool of machines to utilize for scheduling. If pool=None
28 board is used.
29@param check_hosts: require appropriate live hosts to exist in the lab.
30@param SKIP_IMAGE: (optional) If present and True, don't re-image devices.
31"""
32
33import common
Chris Masone304d78d2012-08-15 20:20:49 -070034from autotest_lib.server.cros.dynamic_suite import dynamic_suite
Mike Trutye51d4362012-07-24 15:15:15 -050035
Yusuf Mohsinally039846d2013-05-24 11:51:24 -070036# Values specified in this bug template will override default values when
37# filing bugs on tests that are a part of this suite. If left unspecified
38# the bug filer will fallback to it's defaults.
39_BUG_TEMPLATE = {
40 'labels': ['FW-labblocker', 'Restrict-View-Google'],
41 'owner': '',
42 'status': None,
43 'summary': None,
44 'title': None,
45 'ccs': ['faft-lab-auto-bugs@googlegroups.com']
46}
47
Mike Trutye51d4362012-07-24 15:15:15 -050048dynamic_suite.reimage_and_run(
Vadim Bendebury75259502013-01-22 22:43:47 -080049 build=build, board=board, name='faft_ec', job=job,
Scott Zawalskic0cb0e42012-08-10 11:58:56 -040050 pool=pool, check_hosts=check_hosts, add_experimental=True, num=num,
beeps9651c312013-06-13 10:55:56 -070051 file_bugs=True, skip_reimage=dynamic_suite.skip_reimage(globals()),
Dan Shi0d8fcfa2013-06-10 12:50:16 -070052 bug_template=_BUG_TEMPLATE, devserver_url=devserver_url)