blob: 5404c247bd4ee266ccf526e248f1645495cbba4c [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001#!/bin/sh
2
3# The tests contain hard-coded relative paths and must be
4# executed from $pdir.
5#
6pdir=`dirname $0`
7cd ${pdir}
8for i in t/*.t ; do
9 perl ${i} 1>/dev/null 2>&1;
10 if [ $? == 0 ]; then
11 echo PASS: $i;
12 else
13 echo FAIL: $i;
14 fi;
15done