blob: 96dd24846c7b44cb02f46e7a5721c1f6e76b5baf [file] [log] [blame]
# Copyright 2013 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# TODO(b/338517436): Remove from PVS testplans and remove this file.
from autotest_lib.server import utils
AUTHOR = "ChromeOS Team"
NAME = "firmware_LegacyRecovery"
METADATA = {
"contacts": ["chromeos-faft@google.com", "jbettis@chromium.org"],
"bug_component": "b:792402", # ChromeOS > Platform > Enablement > Firmware > FAFT
"criteria": "Servo based test to Verify recovery request at Remove Screen",
}
DEPENDENCIES = "servo_state:WORKING, servo_usb_state:NORMAL"
TIME = "SHORT"
TEST_TYPE = "server"
JOB_RETRIES = 0
DOC = """
This test requires a USB disk plugged-in, which contains a ChromeOS test image
(built by "build_image --test"). It recovery boots to the USB image and sets
recovery_request=1 and do a reboot. A failure is expected.
"""
args_dict = utils.args_to_dict(args)
servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
def run_legacyrecovery(machine):
host = hosts.create_host(machine, servo_args=servo_args)
job.run_test(
"firmware_LegacyRecovery",
host=host,
cmdline_args=args,
disable_sysinfo=True,
dev_mode=False,
)
parallel_simple(run_legacyrecovery, machines)