aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test
diff options
context:
space:
mode:
authorstekloff@dyn9047022152.beaverton.ibm.com <stekloff@dyn9047022152.beaverton.ibm.com>2006-04-19 22:58:03 +0100
committerstekloff@dyn9047022152.beaverton.ibm.com <stekloff@dyn9047022152.beaverton.ibm.com>2006-04-19 22:58:03 +0100
commit3be23458293005cbbd43b1b223dd4767b02c1238 (patch)
treeae7e0740dfe230628359aa3f9686e9666c36a714 /tools/xm-test
parent00ee1f9b78671eeac055e104d09101d72e0ed402 (diff)
downloadxen-3be23458293005cbbd43b1b223dd4767b02c1238.tar.gz
xen-3be23458293005cbbd43b1b223dd4767b02c1238.tar.bz2
xen-3be23458293005cbbd43b1b223dd4767b02c1238.zip
Fix the 15_create_smallmem_pos.py test, which was failing because the
set console.limit command in the test was never being run. The select in Console.py was never timing out because there was always someting to read on the fd, the OOM messages are constant. So the test would hang. The fix includes: 1) Changing MEM in 15_create_smallmem_pos.py to 32MBs, which is the default for the tools that should work. 2) Change the XmConsole init to add an argument to set the console limit when it's created. 3) Set a default large limit for console so we won't hang in the future. 4) Added a new 16_create_smallmem_neg.py test to handle failure situation. 5) Added comment in README. Signed-off-by: Daniel Stekloff <dsteklof@us.ibm.com>
Diffstat (limited to 'tools/xm-test')
-rw-r--r--tools/xm-test/README18
-rwxr-xr-xtools/xm-test/lib/XmTestLib/Console.py4
-rw-r--r--tools/xm-test/tests/create/15_create_smallmem_pos.py4
-rw-r--r--tools/xm-test/tests/create/16_create_smallmem_neg.py32
-rw-r--r--tools/xm-test/tests/create/Makefile.am3
5 files changed, 56 insertions, 5 deletions
diff --git a/tools/xm-test/README b/tools/xm-test/README
index 61023f4d7b..62897748d8 100644
--- a/tools/xm-test/README
+++ b/tools/xm-test/README
@@ -212,6 +212,24 @@ use it with relatively few problems.
Known Issues
============
+If you create a domain with a small amount of memory, under 32MBs, you
+may run into out of memory situations for the domain. There's no way
+to know the amount of memory needed by the kernel and modules used. Xm-test
+uses 64MBs as default and that should work. If there are out of memory
+issues, the default can be changed. Edit xm-test/lib/XmTestLib/XenDomain.py
+and change ParavirtDefaults and HVMDefaults "memory".
+
+There are two tests that work with small memory, 15_create_smallmem_pos.py
+and 16_create_smallmem_neg.py. The first makes sure the default 32 MBs
+limit works. The second checks a low memory fail situation. These tests
+are located in the xm-test/tests/create directory and can be easily edited
+to change the MEM value they should test. If the 32MBs test fails, the
+failure should be reported to the Xen xen-devel mailing list. The Xen
+tools use 32MBs as a lower acceptable limit for domain creation. The Xen
+mailing lists are located here:
+
+http://lists.xensource.com/
+
Reporting Bugs
==============
diff --git a/tools/xm-test/lib/XmTestLib/Console.py b/tools/xm-test/lib/XmTestLib/Console.py
index 33455ef047..695106be60 100755
--- a/tools/xm-test/lib/XmTestLib/Console.py
+++ b/tools/xm-test/lib/XmTestLib/Console.py
@@ -46,7 +46,7 @@ class ConsoleError(Exception):
class XmConsole:
- def __init__(self, domain, historyLimit=256, historySaveAll=True, historySaveCmds=False):
+ def __init__(self, domain, historyLimit=256, historySaveAll=True, historySaveCmds=False, cLimit=131072):
"""
Parameters:
historyLimit: specifies how many lines of history are maintained
@@ -65,7 +65,7 @@ class XmConsole:
self.historySaveAll = historySaveAll
self.historySaveCmds = historySaveCmds
self.debugMe = False
- self.limit = None
+ self.limit = cLimit
consoleCmd = ["/usr/sbin/xm", "xm", "console", domain]
diff --git a/tools/xm-test/tests/create/15_create_smallmem_pos.py b/tools/xm-test/tests/create/15_create_smallmem_pos.py
index ed8c24d4ef..2658cf379d 100644
--- a/tools/xm-test/tests/create/15_create_smallmem_pos.py
+++ b/tools/xm-test/tests/create/15_create_smallmem_pos.py
@@ -5,7 +5,8 @@
from XmTestLib import *
-MEM = 16
+# 32MBs is the default lower limit for creating domains, it should work
+MEM = 32
domain = XmTestDomain(extraConfig={"memory": MEM,
"extra" :"mem=%iM" % MEM})
@@ -17,7 +18,6 @@ except DomainError, e:
try:
console = XmConsole(domain.getName())
- console.setLimit(65536)
console.sendInput("input")
console.runCmd("ls")
except ConsoleError, e:
diff --git a/tools/xm-test/tests/create/16_create_smallmem_neg.py b/tools/xm-test/tests/create/16_create_smallmem_neg.py
new file mode 100644
index 0000000000..589208580c
--- /dev/null
+++ b/tools/xm-test/tests/create/16_create_smallmem_neg.py
@@ -0,0 +1,32 @@
+#!/usr/bin/python
+
+# Copyright (C) International Business Machines Corp., 2005
+# Author: Dan Smith <danms@us.ibm.com>
+
+from XmTestLib import *
+
+# This is under the default lower limit of 32 and we expect this test
+# to fail. 16MBs isn't enough for the -xen kernel.
+MEM = 16
+
+domain = XmTestDomain(extraConfig={"memory": MEM,
+ "extra" :"mem=%iM" % MEM})
+
+try:
+ domain.start()
+except DomainError, e:
+ FAIL("Unable to start a domain with %i MB" % MEM)
+
+try:
+ console = XmConsole(domain.getName())
+ console.sendInput("input")
+ console.runCmd("ls")
+except ConsoleError, e:
+ if e.reason == RUNAWAY:
+ print "Domain with %i MB has runaway console as expected" % MEM
+ else:
+ print "Starting a domain with %i MB failed as expected" % MEM
+else:
+ FAIL("Starting a console with %i MB passed, expected test to fail" % MEM)
+
+domain.destroy()
diff --git a/tools/xm-test/tests/create/Makefile.am b/tools/xm-test/tests/create/Makefile.am
index bd64f5529c..6dcd6a0d64 100644
--- a/tools/xm-test/tests/create/Makefile.am
+++ b/tools/xm-test/tests/create/Makefile.am
@@ -13,7 +13,8 @@ TESTS = 01_create_basic_pos.test \
12_create_concurrent_stress_pos.test \
13_create_multinic_pos.test \
14_create_blockroot_pos.test \
- 15_create_smallmem_pos.test
+ 15_create_smallmem_pos.test \
+ 16_create_smallmem_neg.test
EXTRA_DIST = $(TESTS)