You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
598 B
24 lines
598 B
# Copyright 2018 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.
|
|
|
|
AUTHOR = "kathrelkeld"
|
|
NAME = "enterprise_ClearTPM"
|
|
TIME = "SHORT"
|
|
TEST_CATEGORY = "Functional"
|
|
TEST_CLASS = "enterprise"
|
|
TEST_TYPE = "server"
|
|
|
|
DOC = """
|
|
Not meant to be run in the lab. A convienient way to clear the TPM on
|
|
a test image while running other tests, if needed.
|
|
"""
|
|
|
|
|
|
def run_test(machine):
|
|
host = hosts.create_host(machine)
|
|
job.run_test('enterprise_ClearTPM', host=host)
|
|
|
|
|
|
parallel_simple(run_test, machines)
|