Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | num_fail=0 | ||||
4 | |||||
5 | for test in tests/check* | ||||
6 | do | ||||
7 | ./"$test" \ | ||||
8 | && echo "PASS: $test" \ | ||||
9 | || { | ||||
10 | echo "FAIL: $test" | ||||
11 | num_fail=$(( ${num_fail} + 1)) | ||||
12 | } | ||||
13 | |||||
14 | done | ||||
15 | |||||
16 | exit $num_fail |