#!/bin/sh
for t in `ls ./*_test`; do
	$t && echo PASS: $t || echo FAIL: $t
done
