diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-08-30 15:20:48 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-08-30 15:20:48 +0000 |
commit | dcccfb9b4e42c4efe169911b5a3b8b70317f0120 (patch) | |
tree | 926f842215c53f1b19951172bbfa8278f10cd9ef /ext/DynaLoader | |
parent | 6f0313ac0022286607467f5c596289255e627e18 (diff) | |
download | perl-dcccfb9b4e42c4efe169911b5a3b8b70317f0120.tar.gz |
Tweak XSLoader.t.
XSLoader is supposed to work even for extensions that
are statically linked. So only check that the extension we
test for is actually available. (This test is not supposed
to be run by miniperl.)
p4raw-id: //depot/perl@20952
Diffstat (limited to 'ext/DynaLoader')
-rw-r--r-- | ext/DynaLoader/t/XSLoader.t | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/ext/DynaLoader/t/XSLoader.t b/ext/DynaLoader/t/XSLoader.t index 6eb26af64b..073a6fdfb6 100644 --- a/ext/DynaLoader/t/XSLoader.t +++ b/ext/DynaLoader/t/XSLoader.t @@ -1,13 +1,8 @@ -#!/usr/bin/perl -w +#!./perl -w BEGIN { - chdir 't'; + chdir 't' if -d 't'; @INC = '../lib'; - eval 'use Fcntl'; - if ($@ =~ /dynamic loading not available/) { - print "1..0 # Skip: no dynamic loading\n"; - exit; - } require Config; import Config; if (($Config{'extensions'} !~ /\bSDBM_File\b/) && ($^O ne 'VMS')){ print "1..0 # Skip: no SDBM_File\n"; |