diff options
author | Gordon Sim <gsim@apache.org> | 2009-01-20 20:37:52 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2009-01-20 20:37:52 +0000 |
commit | 24ffb6ed5672ceec2bd2094a8e1ed06905a52aed (patch) | |
tree | 43492b793c45085c19c1829e8af94a218e19c008 /cpp | |
parent | 9b67b6a5116ecc3ce9d8385e951f6c19252b2935 (diff) | |
download | qpid-python-24ffb6ed5672ceec2bd2094a8e1ed06905a52aed.tar.gz |
Use different file for storing port to avoid interfering with other check-long tests
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@736097 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/src/tests/reliable_replication_test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/tests/reliable_replication_test b/cpp/src/tests/reliable_replication_test index 1a2fa917b3..4c507f3dbc 100755 --- a/cpp/src/tests/reliable_replication_test +++ b/cpp/src/tests/reliable_replication_test @@ -39,11 +39,11 @@ stop_brokers() { setup() { rm -f replication-source.log replication-dest.log - ../qpidd --daemon --port 0 --no-data-dir --no-module-dir --auth no --load-module ../.libs/replicating_listener.so --replication-queue replication --create-replication-queue true --log-enable trace+ --log-to-file replication-source.log --log-to-stderr 0 > qpidd.port - BROKER_A=`cat qpidd.port` + ../qpidd --daemon --port 0 --no-data-dir --no-module-dir --auth no --load-module ../.libs/replicating_listener.so --replication-queue replication --create-replication-queue true --log-enable trace+ --log-to-file replication-source.log --log-to-stderr 0 > qpidd-repl.port + BROKER_A=`cat qpidd-repl.port` - ../qpidd --daemon --port 0 --no-data-dir --no-module-dir --auth no --load-module ../.libs/replication_exchange.so --log-enable info+ --log-to-file replication-dest.log --log-to-stderr 0 > qpidd.port - BROKER_B=`cat qpidd.port` + ../qpidd --daemon --port 0 --no-data-dir --no-module-dir --auth no --load-module ../.libs/replication_exchange.so --log-enable info+ --log-to-file replication-dest.log --log-to-stderr 0 > qpidd-repl.port + BROKER_B=`cat qpidd-repl.port` #../qpidd --port 5555 --no-data-dir --no-module-dir --auth no --load-module ../.libs/replicating_listener.so --replication-queue replication --create-replication-queue true --log-enable trace+ --log-to-file replication-source.log --log-to-stderr 0 & #BROKER_A=5555 @@ -92,7 +92,7 @@ if test -d ${PYTHON_DIR} && test -e ../.libs/replicating_listener.so && test -e echo reliable replication test failed: expectations not met! else echo replication reliable in the face of link failures - rm -f replication.actual replication.expected replication-source.log replication-dest.log + rm -f replication.actual replication.expected replication-source.log replication-dest.log qpidd-repl.port fi fi |