mirror of https://github.com/ntop/n2n.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
811 B
39 lines
811 B
#!/bin/sh
|
|
#
|
|
# This expects to find the tests in the tools dir and the expected results
|
|
# in the tests dir.
|
|
|
|
TESTS="
|
|
tests-compress
|
|
tests-elliptic
|
|
tests-hashing
|
|
tests-transform
|
|
tests-wire
|
|
"
|
|
|
|
TOOLSDIR=tools
|
|
TESTDATA=tests
|
|
|
|
# Allow both dirs be overidden
|
|
[ -n "$1" ] && TOOLSDIR="$1"
|
|
[ -n "$2" ] && TESTDATA="$2"
|
|
|
|
# Confirm we have all the tools and data
|
|
for i in $TESTS; do
|
|
if [ ! -e $TOOLSDIR/$i ]; then
|
|
echo "Could not find test $TOOLSDIR/$i"
|
|
exit 1
|
|
fi
|
|
if [ ! -e $TESTDATA/$i.expected ]; then
|
|
echo "Could not find testdata $TESTDATA/$i.expected"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
# Actually run the tests
|
|
set -e
|
|
for i in $TESTS; do
|
|
echo "$TOOLSDIR/$i >$TESTDATA/$i.out"
|
|
$TOOLSDIR/$i >$TESTDATA/$i.out
|
|
cmp $TESTDATA/$i.expected $TESTDATA/$i.out
|
|
done
|
|
|