blob: 9ae70c1284d1fb178a1ae48ca605ef49b019c70c [file] [log] [blame]
#!/bin/sh
for test in *_test; do
if ./${test}; then
echo "PASS: ${test}"
else
echo "FAIL: ${test}"
fi
done