diff --git a/tests/th-sh b/tests/th-sh deleted file mode 100644 index fef8750..0000000 --- a/tests/th-sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -# $OpenBSD: th-sh,v 1.2 2001/01/28 23:04:57 niklas Exp $ - - -# -# Simple script to find perl and run it -# - -# Avoid common problems with ENV (though perl shouldn't let it through) -# (can you believe some shells don't have an unset???) -unset ENV - -x=x -[ -x /bin/sh ] 2> /dev/null || x=f - -IFS=:$IFS -perl= -for i in $PATH; do - [ X"$i" = X ] && i=. - for j in perl perl4 perl5 ; do - [ -$x "$i/$j" ] && perl=$i/$j && break 2 - done -done - -[ X"$perl" = X ] && { - echo "$0: can't find perl - bye\n" 1>&2 - exit 1 - } - -exec $perl "$@" diff --git a/tests/version.t b/tests/version.t index cb70c66..9cd20dc 100644 --- a/tests/version.t +++ b/tests/version.t @@ -5,5 +5,5 @@ category: pdksh stdin: echo $KSH_VERSION expected-stdout: - @(#)PD KSH v5.2.14 99/07/13.2 + @(#)PD KSH v5.2.14 99/07/13.2 MirOS $Revision: 1.2 $ ---