Patrick Williams | ac13d5f | 2023-11-24 18:59:46 -0600 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | cd tests | ||||
4 | for 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 | ||||
12 | done |