blob: 0d518c8c050d0194e029e892c315b0f40aa17eac [file] [log] [blame]
# Copyright 2017 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
AUTHOR = "mruthven"
NAME = "firmware_ClearTPMOwnerAndReset.stress"
METADATA = {
"contacts": ["chromeos-faft@google.com", "mruthven@chromium.org"],
"bug_component": "b:792402", # ChromeOS > Platform > Enablement > Firmware > FAFT
"criteria": "Verify normal boot after clearing the tpm owner and rebooting the ec",
}
# TODO(b/77292177): add to faft_cr50 once the issue has been addressed.
TIME = "SHORT"
TEST_TYPE = "server"
DEPENDENCIES = "servo_state:WORKING"
DOC = """
This test verifies the device doesn't get into a bad state when the EC is reset
after the tpm owner has been cleared.
"""
from autotest_lib.server import utils
args_dict = utils.args_to_dict(args)
servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
iterations = int(args_dict.get("iterations", 10))
def run(machine):
host = hosts.create_host(machine, servo_args=servo_args)
job.run_test(
"firmware_ClearTPMOwnerAndReset",
host=host,
cmdline_args=args,
iterations=iterations,
tag="stress",
)
parallel_simple(run, machines)