diff options
author | Rafael H. Schloming <rhs@apache.org> | 2008-03-07 16:57:43 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2008-03-07 16:57:43 +0000 |
commit | 205ae0e54ba0c5fdeb5d2e884997c80cb52f1799 (patch) | |
tree | cc85d43a8e09cb15111290f9302c4c6188c0784c /python/run-tests | |
parent | e385ba8c6612ac396a4d9ecbd5c8ffa18977e25a (diff) | |
download | qpid-python-205ae0e54ba0c5fdeb5d2e884997c80cb52f1799.tar.gz |
added session.sync(); session.auto_sync; made transfers not auto-complete; fixed bug in RangedSet
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@634744 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/run-tests')
-rwxr-xr-x | python/run-tests | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/python/run-tests b/python/run-tests index 90c0200d01..7efe5523df 100755 --- a/python/run-tests +++ b/python/run-tests @@ -18,9 +18,17 @@ # under the License. # -import sys +import sys, logging from qpid.testlib import testrunner +if "-v" in sys.argv: + level = logging.DEBUG +else: + level = logging.WARN + +format = "%(asctime)s %(name)-12s %(levelname)-8s %(message)s" +logging.basicConfig(level=level, format=format, datefmt='%H:%M:%S') + if not testrunner.run(): sys.exit(1) |