minimodem-mirror/tests/run-self-tests

12 lines
147 B
Plaintext
Raw Permalink Normal View History

2012-08-15 20:44:26 +02:00
#!/bin/bash
for testcase in ./*.test
2012-08-15 20:44:26 +02:00
do
$testcase
if [ $? -eq 0 ]
then echo "PASS: $testcase"
else echo "FAIL: $testcase"
fi
done