X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcomp%2Frequire.t;h=d06834a3c56081382e27e5c0a5586ec255a5e370;hb=6b845e562be40aac749b544b6d494078c54de4aa;hp=d4c9d8ca61d918a8cde90e0f82e295c626f13300;hpb=a7cb1f9979dd83ab32266dc555f72f0939829c3f;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/comp/require.t b/t/comp/require.t index d4c9d8c..d06834a 100755 --- a/t/comp/require.t +++ b/t/comp/require.t @@ -2,12 +2,18 @@ BEGIN { chdir 't' if -d 't'; - unshift @INC, ('.', '../lib'); + @INC = '.'; + push @INC, '../lib'; } # don't make this lexical $i = 1; -print "1..16\n"; + +my $Is_EBCDIC = (ord('A') == 193) ? 1 : 0; +my $Is_UTF8 = (${^OPEN} || "") =~ /:utf8/; +my $total_tests = 46; +if ($Is_EBCDIC || $Is_UTF8) { $total_tests -= 3; } +print "1..$total_tests\n"; sub do_require { %INC = (); @@ -19,17 +25,37 @@ sub do_require { sub write_file { my $f = shift; open(REQ,">$f") or die "Can't write '$f': $!"; + binmode REQ; + use bytes; print REQ @_; - close REQ; + close REQ or die "Could not close $f: $!"; } +eval {require 5.005}; +print "# $@\nnot " if $@; +print "ok ",$i++,"\n"; + +eval { require 5.005 }; +print "# $@\nnot " if $@; +print "ok ",$i++,"\n"; + +eval { require 5.005; }; +print "# $@\nnot " if $@; +print "ok ",$i++,"\n"; + +eval { + require 5.005 +}; +print "# $@\nnot " if $@; +print "ok ",$i++,"\n"; + # new style version numbers eval { require v5.5.630; }; print "# $@\nnot " if $@; print "ok ",$i++,"\n"; -eval { require v10.0.2; }; +eval { require 10.0.2; }; print "# $@\nnot " unless $@ =~ /^Perl v10\.0\.2 required/; print "ok ",$i++,"\n"; @@ -37,31 +63,30 @@ eval q{ use v5.5.630; }; print "# $@\nnot " if $@; print "ok ",$i++,"\n"; -eval q{ use v10.0.2; }; +eval q{ use 10.0.2; }; print "# $@\nnot " unless $@ =~ /^Perl v10\.0\.2 required/; print "ok ",$i++,"\n"; -my $ver = v5.5.630; +my $ver = 5.005_63; eval { require $ver; }; print "# $@\nnot " if $@; print "ok ",$i++,"\n"; -$ver = v10.0.2; +# check inaccurate fp +$ver = 10.2; eval { require $ver; }; -print "# $@\nnot " unless $@ =~ /^Perl v10\.0\.2 required/; -print "ok ",$i++,"\n"; - -print "not " unless v5.5.1 gt v5.5; +print "# $@\nnot " unless $@ =~ /^Perl v10\.200.0 required/; print "ok ",$i++,"\n"; -print "not " unless 5.005_01 > v5.5; +$ver = 10.000_02; +eval { require $ver; }; +print "# $@\nnot " unless $@ =~ /^Perl v10\.0\.20 required/; print "ok ",$i++,"\n"; -print "not " unless 5.005_64 - v5.5.640 < 0.0000001; +print "not " unless 5.5.1 gt v5.5; print "ok ",$i++,"\n"; { - use utf8; print "not " unless v5.5.640 eq "\x{5}\x{5}\x{280}"; print "ok ",$i++,"\n"; @@ -83,6 +108,24 @@ do_require "0;\n"; print "# $@\nnot " unless $@ =~ /did not return a true/; print "ok ",$i++,"\n"; +print "not " if exists $INC{'bleah.pm'}; +print "ok ",$i++,"\n"; + +my $flag_file = 'bleah.flg'; +# run-time error in require +for my $expected_compile (1,0) { + write_file($flag_file, 1); + print "not " unless -e $flag_file; + print "ok ",$i++,"\n"; + write_file('bleah.pm', "unlink '$flag_file' or die; \$a=0; \$b=1/\$a; 1;\n"); + print "# $@\nnot " if eval { require 'bleah.pm' }; + print "ok ",$i++,"\n"; + print "not " unless -e $flag_file xor $expected_compile; + print "ok ",$i++,"\n"; + print "not " unless exists $INC{'bleah.pm'}; + print "ok ",$i++,"\n"; +} + # compile-time failure in require do_require "1)\n"; # bison says 'parse error' instead of 'syntax error', @@ -90,12 +133,98 @@ do_require "1)\n"; print "# $@\nnot " unless $@ =~ /(syntax|parse) error/mi; print "ok ",$i++,"\n"; +# previous failure cached in %INC +print "not " unless exists $INC{'bleah.pm'}; +print "ok ",$i++,"\n"; +write_file($flag_file, 1); +write_file('bleah.pm', "unlink '$flag_file'; 1"); +print "# $@\nnot " if eval { require 'bleah.pm' }; +print "ok ",$i++,"\n"; +print "# $@\nnot " unless $@ =~ /Compilation failed/i; +print "ok ",$i++,"\n"; +print "not " unless -e $flag_file; +print "ok ",$i++,"\n"; +print "not " unless exists $INC{'bleah.pm'}; +print "ok ",$i++,"\n"; + # successful require do_require "1"; print "# $@\nnot " if $@; print "ok ",$i++,"\n"; -END { 1 while unlink 'bleah.pm'; } +# do FILE shouldn't see any outside lexicals +my $x = "ok $i\n"; +write_file("bleah.do", <