blob: 4a5fd39a41f6feea4cb994b9be7436b129d6008a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
# Run the federation tests.
trap stop_brokers EXIT
start_brokers() {
../qpidd --daemon --port 0 --no-data-dir --auth no > qpidd.port
LOCAL_PORT=`cat qpidd.port`
../qpidd --daemon --port 0 --no-data-dir --auth no > qpidd.port
REMOTE_PORT=`cat qpidd.port`
}
stop_brokers() {
../qpidd -q --port $LOCAL_PORT
../qpidd -q --port $REMOTE_PORT
}
if test -d ../../../python ; then
start_brokers
echo "Running federation tests using brokers on ports $LOCAL_PORT $REMOTE_PORT"
export PYTHONPATH=../../../python
./federation.py -v -s ../../../specs/amqp.0-10-qpid-errata.xml -b localhost:$LOCAL_PORT --remote-port $REMOTE_PORT || { echo "FAIL federation tests"; exit 1; }
fi
|