blob: 2f00267d5001829175f697e4583664831d5796d1 [file] [log] [blame]
#!/bin/sh
cd tests
for atest in test-* ; do
rm -rf tests.log
./${atest} > tests.log 2>&1
if [ $? = 0 ] ; then
echo "PASS: ${atest}"
else
echo "FAIL: ${atest}"
fi
done