summaryrefslogtreecommitdiff
path: root/tests/run_tests.sh
blob: 024351ed0e60a529fef98cbd3d3b8247831d1105 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

if [ ! -f $TESTLIB ]
then
	echo "Could not find test_lib.sh" 1>&2
fi

for i in [0-9][0-9]*
do
	./$i $1 $2
	if [ $? -ne 0 ]
	then
		exit 1
	fi
done