blob: d4b811ded39a98f718a06e7dce05bb3514e35be5 [file] [log] [blame]
# Copyright 2019 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Reboots to RO, attempts to disable software write protect while hardware write
# protect is enabled and verifies that it fails. Then reboots to RW, attempts to
# disable software write protect while hardware write protect is enabled and
# verifies that it fails.
from autotest_lib.server import utils
NAME = "firmware_Fingerprint.SoftwareWriteProtect"
METADATA = {
"contacts": ["chromeos-fingerprint@google.com"],
"bug_component": "b:782045",
"criteria": "Fails if we can disable software write protect from RO or RW.",
}
ATTRIBUTES = "suite:fingerprint"
TEST_TYPE = "server"
DEPENDENCIES = "servo_state:WORKING, fingerprint"
HW_DEPS = ['biod']
JOB_RETRIES = 0
args_dict = utils.args_to_dict(args)
servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
def run(machine):
host = hosts.create_host(machine, servo_args=servo_args)
job.run_test(
"firmware_Fingerprint",
host=host,
test_exe="sw_write_protect.sh",
tag="SoftwareWriteProtect",
)
parallel_simple(run, machines)