blob: 911f468342fd44abf6065b7beb222229275b441d [file] [log] [blame]
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from autotest_lib.server import utils
AUTHOR = "harpreet@chromium.org"
NAME = "enterprise_CFM_Sanity"
TIME = "SHORT"
TEST_CATEGORY = "Functional"
TEST_CLASS = "enterprise"
TEST_TYPE = "server"
ATTRIBUTES = "suite:hotrod, suite:hotrod-release"
JOB_RETRIES = 3
DOC = """
This test clears the TPM if necessary, enrolls the device as a remora device
and runs a series of test actions and performs verifications to make sure CFM
enrolled devices behave as expected. It clears the TPM at the end of the test
run. Every time the TPM is cleared, the system is rebooted.
"""
args_dict = utils.args_to_dict(args)
servo_args = hosts.CrosHost.get_servo_arguments(args_dict)
def run_test(machine):
host = hosts.create_host(machine, servo_args=servo_args)
job.run_test('enterprise_CFM_Sanity', host=host)
parallel_simple(run_test, machines)