blob: 48b9cd9fc5cd4fd8b8e352964a79b287e3904f44 [file] [log] [blame]
Andrew Geisslera2681d92020-10-16 10:17:07 -05001#!/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