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