Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(576)

Side by Side Diff: client/cros/tpm.py

Issue 6479003: Move site_backchannel and site_tpm module into client/cros dir. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/cros/backchannel.py ('k') | client/site_tests/hardware_TPM/hardware_TPM.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import dircache, logging, os, utils, time 5 import dircache, logging, os, utils, time
6 from autotest_lib.client.bin import test, utils 6 from autotest_lib.client.bin import test, utils
7 from autotest_lib.client.common_lib import error 7 from autotest_lib.client.common_lib import error
8 8
9 TPM_TSS_VERSION = "1.2" 9 TPM_TSS_VERSION = "1.2"
10 TPM_OWNER_SECRET = "owner123" 10 TPM_OWNER_SECRET = "owner123"
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 logging.info('Considered %d tests.' % num_tests_considered) 111 logging.info('Considered %d tests.' % num_tests_considered)
112 logging.info('-- Passed: %d' % num_tests_passed) 112 logging.info('-- Passed: %d' % num_tests_passed)
113 logging.info('-- Failed: %d' % num_tests_failed) 113 logging.info('-- Failed: %d' % num_tests_failed)
114 logging.info('-- Not Implemented: %d' % num_tests_not_implemented) 114 logging.info('-- Not Implemented: %d' % num_tests_not_implemented)
115 logging.info('-- Not Applicable: %d' % num_tests_not_applicable) 115 logging.info('-- Not Applicable: %d' % num_tests_not_applicable)
116 116
117 if num_tests_failed != 0: 117 if num_tests_failed != 0:
118 raise error.TestError('Test failed (%d failures)' % 118 raise error.TestError('Test failed (%d failures)' %
119 num_tests_failed) 119 num_tests_failed)
OLDNEW
« no previous file with comments | « client/cros/backchannel.py ('k') | client/site_tests/hardware_TPM/hardware_TPM.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698