mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-23 18:14:29 +08:00
73 lines
1.3 KiB
Bash
Executable File
73 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p NEW
|
|
mkdir -p DIFF
|
|
passed=0
|
|
failed=0
|
|
cat /dev/null > failure-outputs.txt
|
|
|
|
runComplexTests()
|
|
{
|
|
for i in *.sh
|
|
do
|
|
case $i in TEST*.sh) continue;; esac
|
|
if sh ./$i
|
|
then
|
|
passed=`expr $passed + 1`
|
|
else
|
|
failed=`expr $failed + 1`
|
|
fi
|
|
done
|
|
}
|
|
|
|
runSimpleTests()
|
|
{
|
|
only=$1
|
|
echo $passed >.passed
|
|
echo $failed >.failed
|
|
cat TESTLIST | while read name input output options
|
|
do
|
|
case $name in
|
|
\#*) continue;;
|
|
'') continue;;
|
|
esac
|
|
rm -f core
|
|
[ "$only" != "" -a "$name" != "$only" ] && continue
|
|
if ./TESTonce $name $input $output "$options"
|
|
then
|
|
passed=`expr $passed + 1`
|
|
echo $passed >.passed
|
|
else
|
|
failed=`expr $failed + 1`
|
|
echo $failed >.failed
|
|
fi
|
|
[ "$only" != "" -a "$name" = "$only" ] && break
|
|
done
|
|
# I hate shells with their stupid, useless subshells.
|
|
passed=`cat .passed`
|
|
failed=`cat .failed`
|
|
}
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
runComplexTests
|
|
runSimpleTests
|
|
elif [ $# -eq 1 ]
|
|
then
|
|
runSimpleTests $1
|
|
else
|
|
echo "Usage: $0 [test_name]"
|
|
exit 30
|
|
fi
|
|
|
|
# exit with number of failing tests.
|
|
echo '------------------------------------------------'
|
|
printf "%4u tests failed\n" $failed
|
|
printf "%4u tests passed\n" $passed
|
|
echo
|
|
echo
|
|
cat failure-outputs.txt
|
|
echo
|
|
echo
|
|
exit $failed
|