diff options
author | Alan Conway <aconway@apache.org> | 2015-05-19 23:27:36 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2015-05-19 23:27:36 +0000 |
commit | 5227738b402e7a9dc5d8ae56fec4a1eb21660e6b (patch) | |
tree | 4a4d11e08cd8a06c3d138bb06036ea9d4b3efbda /qpid/cpp/src/tests/interop_tests.py | |
parent | ef6d477272d66bbd7d7bd68eb0a89af81e9d42a8 (diff) | |
download | qpid-python-5227738b402e7a9dc5d8ae56fec4a1eb21660e6b.tar.gz |
NO-JIRA: Fix test bugs in ha_tests and interop_test
Race conditions in ha_tests.
Typo in skip logic for interop_test when recent proton not available.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1680422 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/interop_tests.py')
-rwxr-xr-x | qpid/cpp/src/tests/interop_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/interop_tests.py b/qpid/cpp/src/tests/interop_tests.py index d5533ead21..f76b9f634b 100755 --- a/qpid/cpp/src/tests/interop_tests.py +++ b/qpid/cpp/src/tests/interop_tests.py @@ -195,7 +195,7 @@ if __name__ == "__main__": if not BrokerTest.amqp_tx_supported: BrokerTest.amqp_tx_warning() print "Skipping interop_tests" - exit(0) + sys.exit(0) outdir = "interop_tests.tmp" shutil.rmtree(outdir, True) cmd = ["qpid-python-test", "-m", "interop_tests", "-DOUTDIR=%s"%outdir] + sys.argv[1:] |