mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-24 02:05:01 +00:00
Change-Id: I2e798ac8898852aa44a8979e67dfa4de385a6e34 BUG=none TEST=ran the autotest on a CRB with special firmware Review URL: http://codereview.chromium.org/3389029
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
# Copyright (c) 2010 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.
|
|
|
|
import logging, os, re, sys, shutil
|
|
from autotest_lib.client.bin import test, utils
|
|
|
|
class hardware_TPMFirmware(test.test):
|
|
"""
|
|
Test of TPM functionality needed in firmware (client side of the test).
|
|
See also server/site_tests/hardware_TPMFirmwareServer.
|
|
"""
|
|
version = 1
|
|
preserve_srcdir = True
|
|
|
|
def setup(self):
|
|
utils.make('-C %s' % self.srcdir)
|
|
|
|
# Runs a command, logs the output, and returns the exit status.
|
|
def tpm_run(self, cmd, ignore_status=False):
|
|
output = utils.run(cmd, ignore_status=ignore_status)
|
|
logging.info(output)
|
|
self.job.set_state("client_status", output.exit_status)
|
|
|
|
|
|
def run_once(self, subtest='None'):
|
|
logging.info("Running TPM firmware client subtest %s", subtest)
|
|
if (subtest == 'takeownership'):
|
|
output = utils.run("start tcsd", ignore_status=False)
|
|
# When TCSD is running, the system might try to take ownership as
|
|
# well. We don't care.
|
|
logging.info(output)
|
|
own_cmd = "tpm_takeownership -y -z"
|
|
self.tpm_run(own_cmd, ignore_status=True)
|
|
else:
|
|
cmd = os.path.join(self.srcdir, subtest)
|
|
self.tpm_run(cmd, ignore_status=True)
|