blob: fd35357b42bf617be8b44411e174d6cd4e97003b [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001#!/bin/sh
2
3for case in `find t -type f -name '*.t'`; do
Andrew Geissler90fd73c2021-03-05 15:25:55 -06004 perl -I . $case >$case.output 2>&1
Brad Bishop316dfdd2018-06-25 12:45:53 -04005 ret=$?
6 cat $case.output
7 if [ $ret -ne 0 ]; then
8 echo "FAIL: ${case%.t}"
9 elif grep -i 'SKIP' $case.output; then
10 echo "SKIP: ${case%.t}"
11 else
12 echo "PASS: ${case%.t}"
13 fi
14
15 rm -f $case.output
16done