diff options
Diffstat (limited to 'tests/md5sum/basic-1')
-rwxr-xr-x | tests/md5sum/basic-1 | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/md5sum/basic-1 b/tests/md5sum/basic-1 index d2dfb4228..e76c304a3 100755 --- a/tests/md5sum/basic-1 +++ b/tests/md5sum/basic-1 @@ -3,12 +3,11 @@ : ${PERL=perl} : ${srcdir=.} -case "$PERL" in - *'missing perl') - echo 1>&2 "$0: configure didn't find a usable version of Perl, so can't run this test" +$PERL -e 1 > /dev/null 2>&1 || { + echo 1>&2 "$0: configure didn't find a usable version of Perl," \ + "so can't run this test" exit 77 - ;; -esac +} exec $PERL -w -I$srcdir/.. -MFetish -- - <<\EOF require 5.003; |