minimodem-mirror/tests/run-self-tests
2012-08-15 11:44:26 -07:00

12 lines
147 B
Bash
Executable File

#!/bin/bash
for testcase in ./test-*
do
$testcase
if [ $? -eq 0 ]
then echo "PASS: $testcase"
else echo "FAIL: $testcase"
fi
done