summaryrefslogtreecommitdiff
path: root/python/qpid/testlib.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2007-05-30 22:11:24 +0000
committerRafael H. Schloming <rhs@apache.org>2007-05-30 22:11:24 +0000
commit88859adc0c87a2261d39343daab2290dd6b3eb0e (patch)
tree8a875fa57eec7c0e6f751df6a03a40fe6a685bb0 /python/qpid/testlib.py
parent0fc923acb5e8746c59e0d3132fa330bdf53d374f (diff)
downloadqpid-python-88859adc0c87a2261d39343daab2290dd6b3eb0e.tar.gz
added listener support to queues, also added support for non version specific tests
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@542955 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/testlib.py')
-rw-r--r--python/qpid/testlib.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/qpid/testlib.py b/python/qpid/testlib.py
index ba2dbe9fc3..2a5e4dcfcd 100644
--- a/python/qpid/testlib.py
+++ b/python/qpid/testlib.py
@@ -122,10 +122,11 @@ Options:
print "Using specification from:", self.specfile
self.spec = qpid.spec.load(self.specfile, *self.errata)
if len(self.tests) == 0:
+ self.tests=findmodules("tests")
if self.use08spec():
- self.tests=findmodules("tests_0-8")
+ self.tests+=findmodules("tests_0-8")
else:
- self.tests=findmodules("tests_0-9")
+ self.tests+=findmodules("tests_0-9")
def testSuite(self):
class IgnoringTestSuite(unittest.TestSuite):