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

Unified Diff: src/platform/tpm_lite/src/testsuite/lock.c

Issue 1056001: Additional cases for the test suite, and more commands added to TLCL (Closed)
Patch Set: Various fixes for review Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/platform/tpm_lite/src/testsuite/clear.c ('k') | src/platform/tpm_lite/src/testsuite/writelimit.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/tpm_lite/src/testsuite/lock.c
diff --git a/src/platform/tpm_lite/src/testsuite/lock.c b/src/platform/tpm_lite/src/testsuite/lock.c
new file mode 100644
index 0000000000000000000000000000000000000000..9b7cf751901be78ce6aaa88076e52b0910467833
--- /dev/null
+++ b/src/platform/tpm_lite/src/testsuite/lock.c
@@ -0,0 +1,31 @@
+/* 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.
+ */
+
+/* Test of locking, to see if locks count as writes. (They should.)
+ */
+
+#include <stdio.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <tss/tcs.h>
+
+#include "tlcl.h"
+
+#define INDEX0 0xda70
+
+
+int main(void) {
+ TlclLibinit();
+
+ TlclStartup();
+ TlclSelftestfull();
+
+ TlclAssertPhysicalPresence();
+
+ TlclWriteLock(INDEX0);
+
+ printf("Locked 0x%x\n", INDEX0);
+ exit(0);
+}
« no previous file with comments | « src/platform/tpm_lite/src/testsuite/clear.c ('k') | src/platform/tpm_lite/src/testsuite/writelimit.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698