* [PATCH][xm-test] Repost of tpm driver suspend/resume test
@ 2006-03-14 18:27 Stefan Berger
2006-03-15 9:58 ` Ewan Mellor
0 siblings, 1 reply; 7+ messages in thread
From: Stefan Berger @ 2006-03-14 18:27 UTC (permalink / raw)
To: xen-devel; +Cc: danms
[-- Attachment #1: Type: text/plain, Size: 346 bytes --]
This is a repost of a previously posted patch to test suspend and resume
cycles of the TPM front- and backend.
Now that sysfs is mounted in the RAM disk of the test environment, the
test code does not need to do this anymore. This patch also simplifies
previous tests and the APIs used there.
Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
[-- Attachment #2: xmtest_vtpm_suspres.diff --]
[-- Type: text/x-patch, Size: 7071 bytes --]
Index: xen/xen-unstable.hg/tools/xm-test/tests/vtpm/03_vtpm-susp_res.py
===================================================================
--- /dev/null
+++ xen/xen-unstable.hg/tools/xm-test/tests/vtpm/03_vtpm-susp_res.py
@@ -0,0 +1,120 @@
+#!/usr/bin/python
+
+# Copyright (C) International Business Machines Corp., 2006
+# Author: Stefan Berger <stefanb@us.ibm.com>
+
+# Positive Test: create domain with virtual TPM attached at build time,
+# check list of pcrs; suspend and resume the domain and
+# check list of pcrs again
+
+from XmTestLib import *
+import commands
+import os
+import os.path
+
+def vtpm_cleanup(domName):
+ # Since this is only a temporary domain I clean up the domain from the
+ # virtual TPM directory
+ os.system("/etc/xen/scripts/vtpm-delete %s" % domName)
+
+if ENABLE_HVM_SUPPORT:
+ SKIP("vtpm-list not supported for HVM domains")
+
+if os.path.exists("/dev/tpm0") == False:
+ SKIP("This machine has no hardware TPM; cannot run this test")
+
+output = commands.getoutput("ps aux | grep vtpm_manager | grep -v grep")
+if output == "":
+ FAIL("virtual TPM manager must be started to run this test")
+
+# vtpm manager has been detected
+config = {"vtpm":"instance=1,backend=0"}
+domain = XmTestDomain(extraConfig=config)
+
+try:
+ domain.start()
+except DomainError, e:
+ if verbose:
+ print e.extra
+ vtpm_cleanup(domain.getName())
+ FAIL("Unable to create domain")
+
+domName = domain.getName()
+
+try:
+ console = XmConsole(domain.getName())
+except ConsoleError, e:
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+try:
+ console.sendInput("input")
+except ConsoleError, e:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+try:
+ run = console.runCmd("cat /sys/devices/platform/tpm_vtpm/pcrs")
+except ConsoleError, e:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+if re.search("No such file",run["output"]):
+ FAIL("TPM frontend support not compiled into (domU?) kernel")
+
+console.closeConsole()
+
+try:
+ status, ouptut = traceCommand("xm save %s %s.save" %
+ (domName, domName),
+ timeout=30)
+except TimeoutError, e:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+if status != 0:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL("xm save did not succeed")
+
+try:
+ status, ouptut = traceCommand("xm restore %s.save" %
+ (domName),
+ timeout=30)
+except TimeoutError, e:
+ os.remove("%s.save" % domName)
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+os.remove("%s.save" % domName)
+
+if status != 0:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL("xm restore did not succeed")
+
+try:
+ console = XmConsole(domain.getName())
+except ConsoleError, e:
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+try:
+ run = console.runCmd("cat /sys/devices/platform/tpm_vtpm/pcrs")
+except ConsoleError, e:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+console.closeConsole()
+
+domain.stop()
+
+vtpm_cleanup(domName)
+
+if not re.search("PCR-00:",run["output"]):
+ FAIL("Virtual TPM is not working correctly on /dev/vtpm on backend side")
Index: xen/xen-unstable.hg/tools/xm-test/tests/vtpm/Makefile.am
===================================================================
--- xen.orig/xen-unstable.hg/tools/xm-test/tests/vtpm/Makefile.am
+++ xen/xen-unstable.hg/tools/xm-test/tests/vtpm/Makefile.am
@@ -2,7 +2,8 @@
SUBDIRS =
TESTS = 01_vtpm-list_pos.test \
- 02_vtpm-cat_pcrs.test
+ 02_vtpm-cat_pcrs.test \
+ 03_vtpm-susp_res.test
XFAIL_TESTS =
Index: xen/xen-unstable.hg/tools/xm-test/tests/vtpm/01_vtpm-list_pos.py
===================================================================
--- xen.orig/xen-unstable.hg/tools/xm-test/tests/vtpm/01_vtpm-list_pos.py
+++ xen/xen-unstable.hg/tools/xm-test/tests/vtpm/01_vtpm-list_pos.py
@@ -1,18 +1,20 @@
#!/usr/bin/python
# Copyright (C) International Business Machines Corp., 2006
-# Author: Stefan Berger <stefanb@us.ibm.com)
+# Author: Stefan Berger <stefanb@us.ibm.com>
# Positive Test: create domain with virtual TPM attached at build time,
# verify list
from XmTestLib import *
+import commands
+import os
def vtpm_cleanup(domName):
- # Since this is only a temporary domain I clean up the domain from the
- # virtual TPM directory
- traceCommand("/etc/xen/scripts/vtpm-delete %s" % domName)
+ # Since this is only a temporary domain I clean up the domain from the
+ # virtual TPM directory
+ os.system("/etc/xen/scripts/vtpm-delete %s" % domName)
if ENABLE_HVM_SUPPORT:
SKIP("vtpm-list not supported for HVM domains")
Index: xen/xen-unstable.hg/tools/xm-test/tests/vtpm/02_vtpm-cat_pcrs.py
===================================================================
--- xen.orig/xen-unstable.hg/tools/xm-test/tests/vtpm/02_vtpm-cat_pcrs.py
+++ xen/xen-unstable.hg/tools/xm-test/tests/vtpm/02_vtpm-cat_pcrs.py
@@ -1,26 +1,28 @@
#!/usr/bin/python
# Copyright (C) International Business Machines Corp., 2006
-# Author: Stefan Berger <stefanb@us.ibm.com)
+# Author: Stefan Berger <stefanb@us.ibm.com>
# Positive Test: create domain with virtual TPM attached at build time,
# check list of pcrs
from XmTestLib import *
+import commands
+import os
+import os.path
def vtpm_cleanup(domName):
- # Since this is only a temporary domain I clean up the domain from the
- # virtual TPM directory
- traceCommand("/etc/xen/scripts/vtpm-delete %s" % domName)
+ # Since this is only a temporary domain I clean up the domain from the
+ # virtual TPM directory
+ os.system("/etc/xen/scripts/vtpm-delete %s" % domName)
if ENABLE_HVM_SUPPORT:
SKIP("vtpm-list not supported for HVM domains")
-status, output = traceCommand("ls /dev/tpm0")
-if re.search("No such file or directory",output):
+if os.path.exists("/dev/tpm0") == False:
SKIP("This machine has no hardware TPM; cannot run this test")
-status, output = traceCommand("ps aux | grep vtpm_manager | grep -v grep")
+output = commands.getoutput("ps aux | grep vtpm_manager | grep -v grep")
if output == "":
FAIL("virtual TPM manager must be started to run this test")
@@ -46,21 +48,11 @@ except ConsoleError, e:
try:
console.sendInput("input")
- run = console.runCmd("ls /sys")
except ConsoleError, e:
saveLog(console.getHistory())
vtpm_cleanup(domName)
FAIL(str(e))
-if re.search("No such file",run["output"]):
- try:
- run = console.runCmd("mkdir /sys")
- run = console.runCmd("mount -t sysfs /sys /sys")
- except ConsoleError, e:
- saveLog(console.getHistory())
- vtpm_cleanup(domName)
- FAIL(str(e))
-
try:
run = console.runCmd("cat /sys/devices/platform/tpm_vtpm/pcrs")
except ConsoleError, e:
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH][xm-test] Repost of tpm driver suspend/resume test
2006-03-14 18:27 [PATCH][xm-test] Repost of tpm driver suspend/resume test Stefan Berger
@ 2006-03-15 9:58 ` Ewan Mellor
2006-03-15 15:14 ` Daniel Stekloff
2006-03-15 15:56 ` Stefan Berger
0 siblings, 2 replies; 7+ messages in thread
From: Ewan Mellor @ 2006-03-15 9:58 UTC (permalink / raw)
To: Stefan Berger; +Cc: danms, xen-devel
On Tue, Mar 14, 2006 at 01:27:59PM -0500, Stefan Berger wrote:
> This is a repost of a previously posted patch to test suspend and resume
> cycles of the TPM front- and backend.
> Now that sysfs is mounted in the RAM disk of the test environment, the
> test code does not need to do this anymore. This patch also simplifies
> previous tests and the APIs used there.
Woody Marvel and Dan Stekloff still seem to be discussing the best way to
detect sysfs capabilities. I presume your patch depends upon Dan's, and I've
been holding that off until I get a sysfs-detection patch that everyone's
happy with.
Ewan.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH][xm-test] Repost of tpm driver suspend/resume test
2006-03-15 9:58 ` Ewan Mellor
@ 2006-03-15 15:14 ` Daniel Stekloff
2006-03-15 17:49 ` woody marvel
2006-03-15 15:56 ` Stefan Berger
1 sibling, 1 reply; 7+ messages in thread
From: Daniel Stekloff @ 2006-03-15 15:14 UTC (permalink / raw)
To: Ewan Mellor; +Cc: danms, Woody Marvel, Stefan Berger, xen-devel
On Wed, 2006-03-15 at 09:58 +0000, Ewan Mellor wrote:
> On Tue, Mar 14, 2006 at 01:27:59PM -0500, Stefan Berger wrote:
>
> > This is a repost of a previously posted patch to test suspend and resume
> > cycles of the TPM front- and backend.
> > Now that sysfs is mounted in the RAM disk of the test environment, the
> > test code does not need to do this anymore. This patch also simplifies
> > previous tests and the APIs used there.
>
> Woody Marvel and Dan Stekloff still seem to be discussing the best way to
> detect sysfs capabilities. I presume your patch depends upon Dan's, and I've
> been holding that off until I get a sysfs-detection patch that everyone's
> happy with.
Hi Ewan,
Please put the sysfs patch in as is, Woody is fine with it.
Thanks,
Dan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH][xm-test] Repost of tpm driver suspend/resume test
2006-03-15 15:14 ` Daniel Stekloff
@ 2006-03-15 17:49 ` woody marvel
0 siblings, 0 replies; 7+ messages in thread
From: woody marvel @ 2006-03-15 17:49 UTC (permalink / raw)
To: xen-devel; +Cc: Ewan Mellor
Sorry Ewan if there was any mis-communications, the patch is fine. I was
probing for greater understanding. Thanks.
wm
==============
On Wed, 2006-03-15 at 07:14 -0800, Daniel Stekloff wrote:
> On Wed, 2006-03-15 at 09:58 +0000, Ewan Mellor wrote:
> > On Tue, Mar 14, 2006 at 01:27:59PM -0500, Stefan Berger wrote:
> >
> > > This is a repost of a previously posted patch to test suspend and resume
> > > cycles of the TPM front- and backend.
> > > Now that sysfs is mounted in the RAM disk of the test environment, the
> > > test code does not need to do this anymore. This patch also simplifies
> > > previous tests and the APIs used there.
> >
> > Woody Marvel and Dan Stekloff still seem to be discussing the best way to
> > detect sysfs capabilities. I presume your patch depends upon Dan's, and I've
> > been holding that off until I get a sysfs-detection patch that everyone's
> > happy with.
>
>
> Hi Ewan,
>
> Please put the sysfs patch in as is, Woody is fine with it.
>
> Thanks,
>
> Dan
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH][xm-test] Repost of tpm driver suspend/resume test
2006-03-15 9:58 ` Ewan Mellor
2006-03-15 15:14 ` Daniel Stekloff
@ 2006-03-15 15:56 ` Stefan Berger
1 sibling, 0 replies; 7+ messages in thread
From: Stefan Berger @ 2006-03-15 15:56 UTC (permalink / raw)
To: Ewan Mellor; +Cc: danms, xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 1028 bytes --]
xen-devel-bounces@lists.xensource.com wrote on 03/15/2006 04:58:41 AM:
> On Tue, Mar 14, 2006 at 01:27:59PM -0500, Stefan Berger wrote:
>
> > This is a repost of a previously posted patch to test suspend and
resume
> > cycles of the TPM front- and backend.
> > Now that sysfs is mounted in the RAM disk of the test environment, the
> > test code does not need to do this anymore. This patch also simplifies
> > previous tests and the APIs used there.
>
> Woody Marvel and Dan Stekloff still seem to be discussing the best way
to
> detect sysfs capabilities. I presume your patch depends upon Dan's, and
I've
> been holding that off until I get a sysfs-detection patch that
everyone's
> happy with.
Actually, if you haven't put it in, yet, let me know and I will change the
patch to result in a 'SKIP' if the vtpm_manager process as is not running.
Stefan
>
> Ewan.
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
[-- Attachment #1.2: Type: text/html, Size: 1297 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] [xm-test] Repost of tpm driver suspend/resume test
@ 2006-03-15 23:57 Stefan Berger
2006-03-21 0:28 ` Ewan Mellor
0 siblings, 1 reply; 7+ messages in thread
From: Stefan Berger @ 2006-03-15 23:57 UTC (permalink / raw)
To: xen-devel, ewan
[-- Attachment #1: Type: text/plain, Size: 428 bytes --]
This is is a repost of a previously posted patch to test suspend and
resume cycles of the TPM front- and backend.
Now that sysfs is mounted in the RAM disk of the test environment, the
test code does not need to do this anymore. This patch also simplifies
previous tests and the APIs used there. If prerequisites are not met
(vtpm manager not running) the patch will 'skip'.
Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
[-- Attachment #2: xmtest_vtpm_suspres.diff --]
[-- Type: text/x-patch, Size: 7213 bytes --]
Index: xen/xen-unstable.hg/tools/xm-test/tests/vtpm/03_vtpm-susp_res.py
===================================================================
--- /dev/null
+++ xen/xen-unstable.hg/tools/xm-test/tests/vtpm/03_vtpm-susp_res.py
@@ -0,0 +1,120 @@
+#!/usr/bin/python
+
+# Copyright (C) International Business Machines Corp., 2006
+# Author: Stefan Berger <stefanb@us.ibm.com>
+
+# Positive Test: create domain with virtual TPM attached at build time,
+# check list of pcrs; suspend and resume the domain and
+# check list of pcrs again
+
+from XmTestLib import *
+import commands
+import os
+import os.path
+
+def vtpm_cleanup(domName):
+ # Since this is only a temporary domain I clean up the domain from the
+ # virtual TPM directory
+ os.system("/etc/xen/scripts/vtpm-delete %s" % domName)
+
+if ENABLE_HVM_SUPPORT:
+ SKIP("vtpm-list not supported for HVM domains")
+
+if os.path.exists("/dev/tpm0") == False:
+ SKIP("This machine has no hardware TPM; cannot run this test")
+
+output = commands.getoutput("ps aux | grep vtpm_manager | grep -v grep")
+if output == "":
+ SKIP("virtual TPM manager must be started to run this test")
+
+# vtpm manager has been detected
+config = {"vtpm":"instance=1,backend=0"}
+domain = XmTestDomain(extraConfig=config)
+
+try:
+ domain.start()
+except DomainError, e:
+ if verbose:
+ print e.extra
+ vtpm_cleanup(domain.getName())
+ FAIL("Unable to create domain")
+
+domName = domain.getName()
+
+try:
+ console = XmConsole(domain.getName())
+except ConsoleError, e:
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+try:
+ console.sendInput("input")
+except ConsoleError, e:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+try:
+ run = console.runCmd("cat /sys/devices/platform/tpm_vtpm/pcrs")
+except ConsoleError, e:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+if re.search("No such file",run["output"]):
+ FAIL("TPM frontend support not compiled into (domU?) kernel")
+
+console.closeConsole()
+
+try:
+ status, ouptut = traceCommand("xm save %s %s.save" %
+ (domName, domName),
+ timeout=30)
+except TimeoutError, e:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+if status != 0:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL("xm save did not succeed")
+
+try:
+ status, ouptut = traceCommand("xm restore %s.save" %
+ (domName),
+ timeout=30)
+except TimeoutError, e:
+ os.remove("%s.save" % domName)
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+os.remove("%s.save" % domName)
+
+if status != 0:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL("xm restore did not succeed")
+
+try:
+ console = XmConsole(domain.getName())
+except ConsoleError, e:
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+try:
+ run = console.runCmd("cat /sys/devices/platform/tpm_vtpm/pcrs")
+except ConsoleError, e:
+ saveLog(console.getHistory())
+ vtpm_cleanup(domName)
+ FAIL(str(e))
+
+console.closeConsole()
+
+domain.stop()
+
+vtpm_cleanup(domName)
+
+if not re.search("PCR-00:",run["output"]):
+ FAIL("Virtual TPM is not working correctly on /dev/vtpm on backend side")
Index: xen/xen-unstable.hg/tools/xm-test/tests/vtpm/Makefile.am
===================================================================
--- xen.orig/xen-unstable.hg/tools/xm-test/tests/vtpm/Makefile.am
+++ xen/xen-unstable.hg/tools/xm-test/tests/vtpm/Makefile.am
@@ -2,7 +2,8 @@
SUBDIRS =
TESTS = 01_vtpm-list_pos.test \
- 02_vtpm-cat_pcrs.test
+ 02_vtpm-cat_pcrs.test \
+ 03_vtpm-susp_res.test
XFAIL_TESTS =
Index: xen/xen-unstable.hg/tools/xm-test/tests/vtpm/01_vtpm-list_pos.py
===================================================================
--- xen.orig/xen-unstable.hg/tools/xm-test/tests/vtpm/01_vtpm-list_pos.py
+++ xen/xen-unstable.hg/tools/xm-test/tests/vtpm/01_vtpm-list_pos.py
@@ -1,18 +1,20 @@
#!/usr/bin/python
# Copyright (C) International Business Machines Corp., 2006
-# Author: Stefan Berger <stefanb@us.ibm.com)
+# Author: Stefan Berger <stefanb@us.ibm.com>
# Positive Test: create domain with virtual TPM attached at build time,
# verify list
from XmTestLib import *
+import commands
+import os
def vtpm_cleanup(domName):
- # Since this is only a temporary domain I clean up the domain from the
- # virtual TPM directory
- traceCommand("/etc/xen/scripts/vtpm-delete %s" % domName)
+ # Since this is only a temporary domain I clean up the domain from the
+ # virtual TPM directory
+ os.system("/etc/xen/scripts/vtpm-delete %s" % domName)
if ENABLE_HVM_SUPPORT:
SKIP("vtpm-list not supported for HVM domains")
Index: xen/xen-unstable.hg/tools/xm-test/tests/vtpm/02_vtpm-cat_pcrs.py
===================================================================
--- xen.orig/xen-unstable.hg/tools/xm-test/tests/vtpm/02_vtpm-cat_pcrs.py
+++ xen/xen-unstable.hg/tools/xm-test/tests/vtpm/02_vtpm-cat_pcrs.py
@@ -1,28 +1,30 @@
#!/usr/bin/python
# Copyright (C) International Business Machines Corp., 2006
-# Author: Stefan Berger <stefanb@us.ibm.com)
+# Author: Stefan Berger <stefanb@us.ibm.com>
# Positive Test: create domain with virtual TPM attached at build time,
# check list of pcrs
from XmTestLib import *
+import commands
+import os
+import os.path
def vtpm_cleanup(domName):
- # Since this is only a temporary domain I clean up the domain from the
- # virtual TPM directory
- traceCommand("/etc/xen/scripts/vtpm-delete %s" % domName)
+ # Since this is only a temporary domain I clean up the domain from the
+ # virtual TPM directory
+ os.system("/etc/xen/scripts/vtpm-delete %s" % domName)
if ENABLE_HVM_SUPPORT:
SKIP("vtpm-list not supported for HVM domains")
-status, output = traceCommand("ls /dev/tpm0")
-if re.search("No such file or directory",output):
+if os.path.exists("/dev/tpm0") == False:
SKIP("This machine has no hardware TPM; cannot run this test")
-status, output = traceCommand("ps aux | grep vtpm_manager | grep -v grep")
+output = commands.getoutput("ps aux | grep vtpm_manager | grep -v grep")
if output == "":
- FAIL("virtual TPM manager must be started to run this test")
+ SKIP("virtual TPM manager must be started to run this test")
# vtpm manager has been detected
config = {"vtpm":"instance=1,backend=0"}
@@ -46,21 +48,11 @@ except ConsoleError, e:
try:
console.sendInput("input")
- run = console.runCmd("ls /sys")
except ConsoleError, e:
saveLog(console.getHistory())
vtpm_cleanup(domName)
FAIL(str(e))
-if re.search("No such file",run["output"]):
- try:
- run = console.runCmd("mkdir /sys")
- run = console.runCmd("mount -t sysfs /sys /sys")
- except ConsoleError, e:
- saveLog(console.getHistory())
- vtpm_cleanup(domName)
- FAIL(str(e))
-
try:
run = console.runCmd("cat /sys/devices/platform/tpm_vtpm/pcrs")
except ConsoleError, e:
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH] [xm-test] Repost of tpm driver suspend/resume test
2006-03-15 23:57 [PATCH] [xm-test] " Stefan Berger
@ 2006-03-21 0:28 ` Ewan Mellor
0 siblings, 0 replies; 7+ messages in thread
From: Ewan Mellor @ 2006-03-21 0:28 UTC (permalink / raw)
To: Stefan Berger; +Cc: xen-devel
On Wed, Mar 15, 2006 at 06:57:34PM -0500, Stefan Berger wrote:
> This is is a repost of a previously posted patch to test suspend and
> resume cycles of the TPM front- and backend.
> Now that sysfs is mounted in the RAM disk of the test environment, the
> test code does not need to do this anymore. This patch also simplifies
> previous tests and the APIs used there. If prerequisites are not met
> (vtpm manager not running) the patch will 'skip'.
>
> Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
Applied, thank you.
Ewan.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2006-03-21 0:28 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-14 18:27 [PATCH][xm-test] Repost of tpm driver suspend/resume test Stefan Berger
2006-03-15 9:58 ` Ewan Mellor
2006-03-15 15:14 ` Daniel Stekloff
2006-03-15 17:49 ` woody marvel
2006-03-15 15:56 ` Stefan Berger
-- strict thread matches above, loose matches on Subject: below --
2006-03-15 23:57 [PATCH] [xm-test] " Stefan Berger
2006-03-21 0:28 ` Ewan Mellor
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.