summaryrefslogtreecommitdiff
path: root/qpid/python
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2009-08-12 15:49:29 +0000
committerRafael H. Schloming <rhs@apache.org>2009-08-12 15:49:29 +0000
commit7d7100fb4ae5deec284e5bb79ada61364c7a9457 (patch)
treedfaecf4721914e2a3d1db8ff4eace87179af7d28 /qpid/python
parent1a474f025951d776a5a51ecf007dfe6c48bc89ae (diff)
downloadqpid-python-7d7100fb4ae5deec284e5bb79ada61364c7a9457.tar.gz
made if test slightly less obtuse
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@803568 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
-rwxr-xr-xqpid/python/qpid-python-test6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/python/qpid-python-test b/qpid/python/qpid-python-test
index 3785af559f..ca6bec00fb 100755
--- a/qpid/python/qpid-python-test
+++ b/qpid/python/qpid-python-test
@@ -104,10 +104,10 @@ for a in args:
includes.append(a.strip())
if not includes:
- if not opts.modules:
- includes.extend(["qpid.tests.*", "tests.*", "tests_0-10.*"])
- else:
+ if opts.modules:
includes.append("*")
+ else:
+ includes.extend(["qpid.tests.*", "tests.*", "tests_0-10.*"])
def is_ignored(path):
for p in excludes: