11 lines
137 B
Plaintext
11 lines
137 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
for test in *_test; do
|
||
|
|
if ./${test}; then
|
||
|
|
echo "PASS: ${test}"
|
||
|
|
else
|
||
|
|
echo "FAIL: ${test}"
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
|