12 lines
147 B
Bash
Executable File
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
|
|
|