blob: d802781f9e6f1086975cdf7ffb3c7eb80dc7b45c [file] [log] [blame]
Brad Bishopf3fd2882019-06-21 08:06:37 -04001#!/bin/sh
2
3for case in `find t -type f -name '*.t'`; do
4 perl -I inc -I blib -Mblib $case >$case.output 2>&1
5 ret=$?
6 cat $case.output
7 if [ $ret -ne 0 ]; then
8 echo "FAIL: ${case%.t}"
Brad Bishopf3fd2882019-06-21 08:06:37 -04009 else
10 echo "PASS: ${case%.t}"
11 fi
12
13 rm -f $case.output
14done