diff options
author | Gordon Sim <gsim@apache.org> | 2008-11-17 12:54:08 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-11-17 12:54:08 +0000 |
commit | cba82b4f3474b00e8e4ab1c74a7cbebac25ad533 (patch) | |
tree | 8daaf3c24b56e21947d399710721166e5f5cebf1 | |
parent | c2354b9106ca5738c3f31e60ded1025473aaa605 (diff) | |
download | qpid-python-cba82b4f3474b00e8e4ab1c74a7cbebac25ad533.tar.gz |
Fixed erroneous test preventing cleanup of broker.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@718237 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-x | qpid/cpp/src/tests/ssl_test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/ssl_test b/qpid/cpp/src/tests/ssl_test index 84eb62b1db..2a12c79c5b 100755 --- a/qpid/cpp/src/tests/ssl_test +++ b/qpid/cpp/src/tests/ssl_test @@ -25,7 +25,7 @@ start_broker() { } stop_broker() { - if [[ -x $PORT ]] ; then + if [[ $PORT ]] ; then ../qpidd -q --port $PORT fi } |