1#!/bin/sh 2 3cd tests 4for i in `ls *`; do 5 if [ ./$i ] ; then 6 echo "PASS: $i" 7 else 8 echo "FAIL: $i" 9 fi 10done 11