Home | History | Annotate | Download | only in enterprise_ClearTPM
      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 
      5 AUTHOR = "kathrelkeld"
      6 NAME = "enterprise_ClearTPM"
      7 TIME = "SHORT"
      8 TEST_CATEGORY = "Functional"
      9 TEST_CLASS = "enterprise"
     10 TEST_TYPE = "server"
     11 
     12 DOC = """
     13 Not meant to be run in the lab.  A convienient way to clear the TPM on
     14 a test image while running other tests, if needed.
     15 """
     16 
     17 
     18 def run_test(machine):
     19     host = hosts.create_host(machine)
     20     job.run_test('enterprise_ClearTPM', host=host)
     21 
     22 
     23 parallel_simple(run_test, machines)
     24