aboutsummaryrefslogtreecommitdiff
path: root/src/run-tests.sh
blob: aa51958c0b098f1ae80efeea35b4acb5ba07a67b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
for t in $(cat testlist); do
	
	echo "Running $t ... "
	"./$t"
	ret=$?
	if [ $ret -eq 0 ]; then
		echo "OK";
	else
		echo "FAIL: $ret"
	fi
done