diff options
author | Rafael H. Schloming <rhs@apache.org> | 2009-08-12 15:49:29 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2009-08-12 15:49:29 +0000 |
commit | 03f6cbf63250f1d0a60f23aa3604e10b6be43fe2 (patch) | |
tree | 147df01010faa41879fad96491157ffb7ef38729 /python/qpid-python-test | |
parent | b964e3824c560e1cd200850af5efed46bef0f74a (diff) | |
download | qpid-python-03f6cbf63250f1d0a60f23aa3604e10b6be43fe2.tar.gz |
made if test slightly less obtuse
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@803568 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid-python-test')
-rwxr-xr-x | python/qpid-python-test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/qpid-python-test b/python/qpid-python-test index 3785af559f..ca6bec00fb 100755 --- a/python/qpid-python-test +++ b/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: |