15 lines
513 B
Diff
15 lines
513 B
Diff
Index: xen-unstable/tools/xm-test/tests/save/01_save_basic_pos.py
|
|
===================================================================
|
|
--- xen-unstable.orig/tools/xm-test/tests/save/01_save_basic_pos.py
|
|
+++ xen-unstable/tools/xm-test/tests/save/01_save_basic_pos.py
|
|
@@ -35,3 +35,9 @@ if s != 0:
|
|
# Make sure it's gone
|
|
if isDomainRunning(domain.getName()):
|
|
FAIL("Domain still running after save!")
|
|
+
|
|
+# Clean up
|
|
+try:
|
|
+ s, o = traceCommand("xm delete %s" % domain.getName(), timeout=30)
|
|
+except:
|
|
+ pass
|