blob: eb74abaf69a4089cd78317f96582e2807d964a63 [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"
6NAME = "faft"
7PURPOSE = "Test hard-to-automate firmware and ec scenarios."
8CRITERIA = "All tests with SUITE=faft must pass."
9
10TIME = "SHORT"
11TEST_CATEGORY = "General"
12TEST_CLASS = "suite"
13TEST_TYPE = "Server"
14
15DOC = """
16This is the faft (FULLY AUTOMATED FIRMWARE TEST) suite. The tests in this
17suite verify that normal boot scenarios progress properly (with state progress
18checks) and that error scenarios (corrupted blobs) are caught as expected.
19Some of these test failures should close the tree as they may imply that the
20system is unbootable and further tests will only become hung or blocked.
21Other faft tests verify all of the features (some of them security related)
22are functioning.
23
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
34from autotest_lib.server.cros import dynamic_suite
35
36dynamic_suite.reimage_and_run(
37 build=build, board=board, name='faft', job=job,
38 pool=pool, check_hosts=check_hosts, add_experimental=True,
39 skip_reimage=dynamic_suite.skip_reimage(globals()))