1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/bin/sh
# This is helper script used from runtests.sh as part of the standard
# regression tests.
set -e
echo "Running TCP REGISTER test"
./testStack --protocol=tcp
echo "Running TCP REGISTER test (threaded transports)"
./testStack --protocol=tcp --tf=32
echo "Running TCP REGISTER test (threaded stack)"
./testStack --protocol=tcp --thread-type=multithreadedstack
echo "Running TCP REGISTER test (threaded stack, threaded transports)"
./testStack --protocol=tcp --thread-type=multithreadedstack --tf=32
echo "Running UDP REGISTER test"
./testStack --protocol=udp
echo "Running TCP REGISTER test with 50 ports"
./testStack --protocol=tcp --numports=50
echo "Running TCP INVITE test"
./testStack --protocol=tcp --invite
|