blob: 8336e040822ea996341d873c03fdbb8c7edabbc7 [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
36dynamic_suite.reimage_and_run(
Vadim Bendebury75259502013-01-22 22:43:47 -080037 build=build, board=board, name='faft_ec', job=job,
Scott Zawalskic0cb0e42012-08-10 11:58:56 -040038 pool=pool, check_hosts=check_hosts, add_experimental=True, num=num,
Alex Miller2a861b32012-09-27 14:16:49 -070039 file_bugs=file_bugs, skip_reimage=dynamic_suite.skip_reimage(globals()))