aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/tests/create/08_create_mem128_pos.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xm-test/tests/create/08_create_mem128_pos.py')
-rw-r--r--tools/xm-test/tests/create/08_create_mem128_pos.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/xm-test/tests/create/08_create_mem128_pos.py b/tools/xm-test/tests/create/08_create_mem128_pos.py
index 85d35173c7..f8acd4e62e 100644
--- a/tools/xm-test/tests/create/08_create_mem128_pos.py
+++ b/tools/xm-test/tests/create/08_create_mem128_pos.py
@@ -15,12 +15,12 @@ from XmTestLib import *
rdpath = os.environ.get("RD_PATH")
if not rdpath:
- rdpath = "../ramdisk"
+ rdpath = "../ramdisk"
#get current free memory info
mem = int(getInfo("free_memory"))
if mem < 128:
- SKIP("This test needs 128 MB of free memory (%i MB avail)" % mem)
+ SKIP("This test needs 128 MB of free memory (%i MB avail)" % mem)
#create a domain with mem=128
config={"memory": 128}
@@ -39,11 +39,11 @@ except DomainError, e:
eyecatcher1 = str(isDomainRunning(domain_mem128.getName()))
if eyecatcher1 != "True":
- FAIL("Failed to verify that a 128MB domain started")
+ FAIL("Failed to verify that a 128MB domain started")
eyecatcher2 = getDomMem(domain_mem128.getName())
if eyecatcher2 not in range(126, 129):
- FAIL("Started domain with 128MB, but it got %i MB" % eyecatcher2)
+ FAIL("Started domain with 128MB, but it got %i MB" % eyecatcher2)
#stop the domain (nice shutdown)
domain_mem128.stop()