1#!/bin/sh
2
3num_fail=0
4
5for test in check*
6do
7    ./"$test" \
8         && echo "PASS: $test" \
9         || {
10            echo "FAIL: $test"
11            num_fail=$(( ${num_fail} + 1))
12         }
13
14done
15
16exit $num_fail
17