11 lines
127 B
Plaintext
11 lines
127 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cd tests
|
||
|
for i in `ls *`; do
|
||
|
if [ ./$i ] ; then
|
||
|
echo "PASS: $i"
|
||
|
else
|
||
|
echo "FAIL: $i"
|
||
|
fi
|
||
|
done
|