1# Copyright 2018 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5AUTHOR = "kathrelkeld" 6NAME = "enterprise_ClearTPM" 7TIME = "SHORT" 8TEST_CATEGORY = "Functional" 9TEST_CLASS = "enterprise" 10TEST_TYPE = "server" 11 12DOC = """ 13Not meant to be run in the lab. A convienient way to clear the TPM on 14a test image while running other tests, if needed. 15""" 16 17 18def run_test(machine): 19 host = hosts.create_host(machine) 20 job.run_test('enterprise_ClearTPM', host=host) 21 22 23parallel_simple(run_test, machines) 24