#!/bin/sh

for t in `ls ./*-test`; do
	./$t && echo PASS: $t || echo FAIL: $t
done
