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 from autotest_lib.client.common_lib.cros import tpm_utils
      6 from autotest_lib.server import test
      7 
      8 
      9 class enterprise_ClearTPM(test.test):
     10     """A utility test that clears the TPM."""
     11     version = 1
     12 
     13     def run_once(self, host):
     14         """Entry point of this test."""
     15         tpm_utils.ClearTPMOwnerRequest(host)
     16