aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/tests/create/09_create_mem256_pos.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xm-test/tests/create/09_create_mem256_pos.py')
-rw-r--r--tools/xm-test/tests/create/09_create_mem256_pos.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/xm-test/tests/create/09_create_mem256_pos.py b/tools/xm-test/tests/create/09_create_mem256_pos.py
index 28db3dade2..71c2e1bc13 100644
--- a/tools/xm-test/tests/create/09_create_mem256_pos.py
+++ b/tools/xm-test/tests/create/09_create_mem256_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 < 256:
- SKIP("This test needs 256 MB of free memory (%i MB avail)" % mem)
+ SKIP("This test needs 256 MB of free memory (%i MB avail)" % mem)
#create a domain with mem=256
config = {"memory": 256}
@@ -39,11 +39,11 @@ except DomainError, e:
eyecatcher1 = str(isDomainRunning(domain_mem256.getName()))
if eyecatcher1 != "True":
- FAIL("Failed to verify that a 256MB domain started")
+ FAIL("Failed to verify that a 256MB domain started")
eyecatcher2 = getDomMem(domain_mem256.getName())
if eyecatcher2 not in range(254, 257):
- FAIL("Started domain with 256MB, but it got %i MB" % eyecatcher2)
+ FAIL("Started domain with 256MB, but it got %i MB" % eyecatcher2)
#stop the domain (nice shutdown)
domain_mem256.stop()