blob: 9ae70c1284d1fb178a1ae48ca605ef49b019c70c [file] [log] [blame]
Brad Bishop996bc452019-12-02 13:05:15 -05001#!/bin/sh
2
3for test in *_test; do
4 if ./${test}; then
5 echo "PASS: ${test}"
6 else
7 echo "FAIL: ${test}"
8 fi
9done
10