17 lines
215 B
Plaintext
Raw Permalink Normal View History

2025-05-10 21:58:58 +08:00
#!/bin/sh
num_fail=0
for test in check*
do
./"$test" \
&& echo "PASS: $test" \
|| {
echo "FAIL: $test"
num_fail=$(( ${num_fail} + 1))
}
done
exit $num_fail