#!/bin/sh
RET=0
cd tests
for t in *; do
    if ./$t; then
        echo PASS: $t
    else
        echo FAIL: $t
        RET=1
    fi
done
exit $RET
