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