2006-12-21 06:30:28 +00:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
|
|
|
# Run the sdp tests
|
|
|
|
#
|
|
|
|
# usage: run_test_sdp [test_program] [test-directory]
|
|
|
|
#
|
|
|
|
|
|
|
|
test_sdp="${1:-./test_sdp}"
|
2007-04-15 02:03:41 +00:00
|
|
|
sdp_path=`dirname $0`
|
|
|
|
tests="${2:-${sdp_path}/tests}"
|
2006-12-21 06:30:28 +00:00
|
|
|
|
|
|
|
if test -r $tests/message-1.sdp ; then
|
|
|
|
|
2008-08-12 17:08:44 +00:00
|
|
|
for n in 1 2 3 4 5 6 7 8 9 10 11;
|
2008-12-16 18:05:22 +00:00
|
|
|
do
|
2006-12-21 06:30:28 +00:00
|
|
|
echo -n "$n: "
|
|
|
|
"$test_sdp" < "$tests/message-$n.sdp" && echo OK
|
|
|
|
done
|
|
|
|
|
2008-12-16 18:05:22 +00:00
|
|
|
else
|
2007-04-15 02:03:41 +00:00
|
|
|
echo "sdp run-tests: no tests found in $tests, skipping."
|
|
|
|
exit 77
|
2006-12-21 06:30:28 +00:00
|
|
|
fi
|