blob: 9bc480aa7f0256303bca46cd59a637a4be4e338a [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001#!/bin/sh
2
3cd tests
4for atest in test_* ; do
5 rm -rf tests.log
6 ./${atest} > tests.log 2>&1
7 if [ $? = 0 ] ; then
8 echo "PASS: ${atest}"
9 else
10 echo "FAIL: ${atest}"
11 fi
12done