diff options
author | Justin Ross <jross@apache.org> | 2016-06-01 04:01:58 +0000 |
---|---|---|
committer | Justin Ross <jross@apache.org> | 2016-06-01 04:01:58 +0000 |
commit | ac0636922f3d15a55b5ede7c01b236c047f9603a (patch) | |
tree | 97a5dab9372474dfb76dd714f43f868d90cf1985 /qpid/cpp/src/tests/brokertest.py | |
parent | 9894c85f5be5d3539b18a5b5519a86e2092ba784 (diff) | |
download | qpid-python-ac0636922f3d15a55b5ede7c01b236c047f9603a.tar.gz |
QPID-7281: Various fixes for the tests on windows
- Adjust environment script for windows paths
- Pythonify the test runner for the windows store tests
- Run the HA tests only on posix systems
- Remove a finicky assertion in brokertest.py
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1746375 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/brokertest.py')
-rw-r--r-- | qpid/cpp/src/tests/brokertest.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/brokertest.py b/qpid/cpp/src/tests/brokertest.py index 8c32faad0c..b40e953427 100644 --- a/qpid/cpp/src/tests/brokertest.py +++ b/qpid/cpp/src/tests/brokertest.py @@ -157,7 +157,6 @@ class Popen(subprocess.Popen): """ self._clean = False self._clean_lock = Lock() - assert find_exe(cmd[0]), "executable not found: "+cmd[0] if type(cmd) is type(""): cmd = [cmd] # Make it a list. self.cmd = [ str(x) for x in cmd ] self.expect = expect |