Commit | Line | Data |
---|---|---|
8d063cd8 LW |
1 | #!./perl |
2 | ||
90ce63d5 | 3 | BEGIN { |
90ce63d5 RS |
4 | $| = 1; |
5 | chdir 't' if -d 't'; | |
20822f61 | 6 | @INC = '../lib'; |
774d564b | 7 | $SIG{__WARN__} = sub { die "Dying on warning: ", @_ }; |
90ce63d5 | 8 | } |
8d063cd8 | 9 | |
9f1b1f2d | 10 | use warnings; |
04fee9b5 | 11 | use Config; |
9f1b1f2d | 12 | |
0bee926d | 13 | my $test = 1; |
90ce63d5 | 14 | sub ok { |
0bee926d MS |
15 | my($ok, $info, $todo) = @_; |
16 | ||
17 | # You have to do it this way or VMS will get confused. | |
18 | printf "%s $test%s\n", $ok ? "ok" : "not ok", | |
19 | $todo ? " # TODO $todo" : ''; | |
20 | ||
21 | unless( $ok ) { | |
22 | printf "# Failed test at line %d\n", (caller)[2]; | |
09fdc078 | 23 | print "# $info\n" if defined $info; |
90ce63d5 | 24 | } |
0bee926d MS |
25 | |
26 | $test++; | |
27 | return $ok; | |
28 | } | |
29 | ||
30 | sub skip { | |
31 | my($reason) = @_; | |
32 | ||
33 | printf "ok $test # skipped%s\n", defined $reason ? ": $reason" : ''; | |
34 | ||
35 | $test++; | |
36 | return 1; | |
90ce63d5 RS |
37 | } |
38 | ||
547d1dd8 | 39 | print "1..54\n"; |
0bee926d | 40 | |
43651d81 NC |
41 | $Is_MSWin32 = $^O eq 'MSWin32'; |
42 | $Is_NetWare = $^O eq 'NetWare'; | |
43 | $Is_VMS = $^O eq 'VMS'; | |
44 | $Is_Dos = $^O eq 'dos'; | |
45 | $Is_os2 = $^O eq 'os2'; | |
46 | $Is_Cygwin = $^O eq 'cygwin'; | |
47 | $Is_MacOS = $^O eq 'MacOS'; | |
48 | $Is_MPE = $^O eq 'mpeix'; | |
49 | $Is_miniperl = $ENV{PERL_CORE_MINITEST}; | |
dbc1d986 | 50 | $Is_BeOS = $^O eq 'beos'; |
be708cc0 | 51 | |
c363d00c CB |
52 | $PERL = ($Is_NetWare ? 'perl' : |
53 | ($Is_MacOS || $Is_VMS) ? $^X : | |
54 | $Is_MSWin32 ? '.\perl' : | |
be708cc0 | 55 | './perl'); |
68dc0745 | 56 | |
39e571d4 | 57 | eval '$ENV{"FOO"} = "hi there";'; # check that ENV is inited inside eval |
26f6e342 NK |
58 | # cmd.exe will echo 'variable=value' but 4nt will echo just the value |
59 | # -- Nikola Knezevic | |
8efe09f7 | 60 | if ($Is_MSWin32) { ok `set FOO` =~ /^(?:FOO=)?hi there$/; } |
be708cc0 | 61 | elsif ($Is_MacOS) { ok "1 # skipped", 1; } |
c363d00c | 62 | elsif ($Is_VMS) { ok `write sys\$output f\$trnlnm("FOO")` eq "hi there\n"; } |
be708cc0 | 63 | else { ok `echo \$FOO` eq "hi there\n"; } |
8d063cd8 | 64 | |
bf38876a | 65 | unlink 'ajslkdfpqjsjfk'; |
8d063cd8 | 66 | $! = 0; |
90ce63d5 | 67 | open(FOO,'ajslkdfpqjsjfk'); |
0bee926d | 68 | ok $!, $!; |
90ce63d5 | 69 | close FOO; # just mention it, squelch used-only-once |
8d063cd8 | 70 | |
be708cc0 | 71 | if ($Is_MSWin32 || $Is_NetWare || $Is_Dos || $Is_MPE || $Is_MacOS) { |
2d4fcd5e | 72 | skip('SIGINT not safe on this platform') for 1..4; |
68dc0745 | 73 | } |
74 | else { | |
c363d00c CB |
75 | # the next tests are done in a subprocess because sh spits out a |
76 | # newline onto stderr when a child process kills itself with SIGINT. | |
04fee9b5 | 77 | # We use a pipe rather than system() because the VMS command buffer |
c363d00c CB |
78 | # would overflow with a command that long. |
79 | ||
80 | open( CMDPIPE, "| $PERL"); | |
81 | ||
82 | print CMDPIPE <<'END'; | |
378cc40b | 83 | |
79072805 | 84 | $| = 1; # command buffering |
378cc40b | 85 | |
b715f106 MB |
86 | $SIG{"INT"} = "ok3"; kill "INT",$$; sleep 1; |
87 | $SIG{"INT"} = "IGNORE"; kill "INT",$$; sleep 1; print "ok 4\n"; | |
0bee926d | 88 | $SIG{"INT"} = "DEFAULT"; kill "INT",$$; sleep 1; print "not ok 4\n"; |
79072805 LW |
89 | |
90 | sub ok3 { | |
91 | if (($x = pop(@_)) eq "INT") { | |
92 | print "ok 3\n"; | |
93 | } | |
94 | else { | |
652ed9f8 | 95 | print "not ok 3 ($x @_)\n"; |
79072805 LW |
96 | } |
97 | } | |
98 | ||
99 | END | |
c363d00c CB |
100 | |
101 | close CMDPIPE; | |
102 | ||
2d4fcd5e AJ |
103 | open( CMDPIPE, "| $PERL"); |
104 | print CMDPIPE <<'END'; | |
105 | ||
106 | { package X; | |
107 | sub DESTROY { | |
108 | kill "INT",$$; | |
109 | } | |
110 | } | |
111 | sub x { | |
112 | my $x=bless [], 'X'; | |
113 | return sub { $x }; | |
114 | } | |
115 | $| = 1; # command buffering | |
116 | $SIG{"INT"} = "ok5"; | |
117 | { | |
118 | local $SIG{"INT"}=x(); | |
119 | print ""; # Needed to expose failure in 5.8.0 (why?) | |
120 | } | |
121 | sleep 1; | |
122 | delete $SIG{"INT"}; | |
123 | kill "INT",$$; sleep 1; | |
124 | sub ok5 { | |
125 | print "ok 5\n"; | |
126 | } | |
127 | END | |
128 | close CMDPIPE; | |
bb4e15c8 | 129 | $? >>= 8 if $^O eq 'VMS'; # POSIX status hiding in 2nd byte |
639cf43b IZ |
130 | my $todo = ($^O eq 'os2' ? ' # TODO: EMX v0.9d_fix4 bug: wrong nibble? ' : ''); |
131 | print $? & 0xFF ? "ok 6$todo\n" : "not ok 6$todo\n"; | |
2d4fcd5e AJ |
132 | |
133 | $test += 4; | |
68dc0745 | 134 | } |
a687059c | 135 | |
68dc0745 | 136 | # can we slice ENV? |
137 | @val1 = @ENV{keys(%ENV)}; | |
a687059c | 138 | @val2 = values(%ENV); |
0bee926d MS |
139 | ok join(':',@val1) eq join(':',@val2); |
140 | ok @val1 > 1; | |
90ce63d5 RS |
141 | |
142 | # regex vars | |
143 | 'foobarbaz' =~ /b(a)r/; | |
0bee926d MS |
144 | ok $` eq 'foo', $`; |
145 | ok $& eq 'bar', $&; | |
146 | ok $' eq 'baz', $'; | |
147 | ok $+ eq 'a', $+; | |
90ce63d5 RS |
148 | |
149 | # $" | |
150 | @a = qw(foo bar baz); | |
0bee926d | 151 | ok "@a" eq "foo bar baz", "@a"; |
90ce63d5 RS |
152 | { |
153 | local $" = ','; | |
0bee926d | 154 | ok "@a" eq "foo,bar,baz", "@a"; |
90ce63d5 | 155 | } |
a687059c | 156 | |
90ce63d5 RS |
157 | # $; |
158 | %h = (); | |
159 | $h{'foo', 'bar'} = 1; | |
0bee926d | 160 | ok((keys %h)[0] eq "foo\034bar", (keys %h)[0]); |
90ce63d5 RS |
161 | { |
162 | local $; = 'x'; | |
163 | %h = (); | |
164 | $h{'foo', 'bar'} = 1; | |
0bee926d | 165 | ok((keys %h)[0] eq 'fooxbar', (keys %h)[0]); |
90ce63d5 | 166 | } |
ed6116ce | 167 | |
90ce63d5 | 168 | # $?, $@, $$ |
dc459aad JH |
169 | if ($Is_MacOS) { |
170 | skip('$? + system are broken on MacPerl') for 1..2; | |
171 | } | |
172 | else { | |
173 | system qq[$PERL "-I../lib" -e "use vmsish qw(hushed); exit(0)"]; | |
174 | ok $? == 0, $?; | |
175 | system qq[$PERL "-I../lib" -e "use vmsish qw(hushed); exit(1)"]; | |
176 | ok $? != 0, $?; | |
177 | } | |
90ce63d5 RS |
178 | |
179 | eval { die "foo\n" }; | |
0bee926d | 180 | ok $@ eq "foo\n", $@; |
90ce63d5 | 181 | |
0bee926d | 182 | ok $$ > 0, $$; |
306196c3 MS |
183 | eval { $$++ }; |
184 | ok $@ =~ /^Modification of a read-only value attempted/; | |
90ce63d5 RS |
185 | |
186 | # $^X and $0 | |
ed37317b | 187 | { |
3e3baf6d | 188 | if ($^O eq 'qnx') { |
7fbf1995 | 189 | chomp($wd = `/usr/bin/fullpath -t`); |
68dc0745 | 190 | } |
04fee9b5 | 191 | elsif($Is_Cygwin || $Config{'d_procselfexe'}) { |
1cab015a EF |
192 | # Cygwin turns the symlink into the real file |
193 | chomp($wd = `pwd`); | |
194 | $wd =~ s#/t$##; | |
195 | } | |
ed344e4f IZ |
196 | elsif($Is_os2) { |
197 | $wd = Cwd::sys_cwd(); | |
198 | } | |
be708cc0 JH |
199 | elsif($Is_MacOS) { |
200 | $wd = ':'; | |
201 | } | |
68dc0745 | 202 | else { |
203 | $wd = '.'; | |
204 | } | |
c363d00c | 205 | my $perl = ($Is_MacOS || $Is_VMS) ? $^X : "$wd/perl"; |
ed37317b TB |
206 | my $headmaybe = ''; |
207 | my $tailmaybe = ''; | |
68dc0745 | 208 | $script = "$wd/show-shebang"; |
ed37317b TB |
209 | if ($Is_MSWin32) { |
210 | chomp($wd = `cd`); | |
8ac9c18d GS |
211 | $wd =~ s|\\|/|g; |
212 | $perl = "$wd/perl.exe"; | |
213 | $script = "$wd/show-shebang.bat"; | |
ed37317b TB |
214 | $headmaybe = <<EOH ; |
215 | \@rem =' | |
216 | \@echo off | |
217 | $perl -x \%0 | |
218 | goto endofperl | |
219 | \@rem '; | |
220 | EOH | |
221 | $tailmaybe = <<EOT ; | |
222 | ||
223 | __END__ | |
224 | :endofperl | |
225 | EOT | |
226 | } | |
ed344e4f IZ |
227 | elsif ($Is_os2) { |
228 | $script = "./show-shebang"; | |
229 | } | |
be708cc0 JH |
230 | elsif ($Is_MacOS) { |
231 | $script = ":show-shebang"; | |
232 | } | |
c363d00c CB |
233 | elsif ($Is_VMS) { |
234 | $script = "[]show-shebang"; | |
be708cc0 | 235 | } |
a1a0e61e | 236 | if ($^O eq 'os390' or $^O eq 'posix-bc' or $^O eq 'vmesa') { # no shebang |
9d116dd7 JH |
237 | $headmaybe = <<EOH ; |
238 | eval 'exec ./perl -S \$0 \${1+"\$\@"}' | |
239 | if 0; | |
240 | EOH | |
241 | } | |
2eecd615 | 242 | $s1 = "\$^X is $perl, \$0 is $script\n"; |
0bee926d MS |
243 | ok open(SCRIPT, ">$script"), $!; |
244 | ok print(SCRIPT $headmaybe . <<EOB . <<'EOF' . $tailmaybe), $!; | |
774d564b | 245 | #!$wd/perl |
246 | EOB | |
90ce63d5 RS |
247 | print "\$^X is $^X, \$0 is $0\n"; |
248 | EOF | |
0bee926d MS |
249 | ok close(SCRIPT), $!; |
250 | ok chmod(0755, $script), $!; | |
c363d00c | 251 | $_ = ($Is_MacOS || $Is_VMS) ? `$perl $script` : `$script`; |
ed344e4f | 252 | s/\.exe//i if $Is_Dos or $Is_Cygwin or $Is_os2; |
dbc1d986 | 253 | s{./$script}{$script} if $Is_BeOS; # revert BeOS execvp() side-effect |
68dc0745 | 254 | s{\bminiperl\b}{perl}; # so that test doesn't fail with miniperl |
ed37317b | 255 | s{is perl}{is $perl}; # for systems where $^X is only a basename |
a6c40364 | 256 | s{\\}{/}g; |
0bee926d | 257 | ok((($Is_MSWin32 || $Is_os2) ? uc($_) eq uc($s1) : $_ eq $s1), " :$_:!=:$s1:"); |
ed37317b | 258 | $_ = `$perl $script`; |
ed344e4f | 259 | s/\.exe//i if $Is_Dos or $Is_os2; |
dbc1d986 | 260 | s{./$perl}{$perl} if $Is_BeOS; # revert BeOS execvp() side-effect |
a6c40364 | 261 | s{\\}{/}g; |
0bee926d | 262 | ok((($Is_MSWin32 || $Is_os2) ? uc($_) eq uc($s1) : $_ eq $s1), " :$_:!=:$s1: after `$perl $script`"); |
22fc9b38 | 263 | ok unlink($script), $!; |
68dc0745 | 264 | } |
ed6116ce | 265 | |
90ce63d5 | 266 | # $], $^O, $^T |
0bee926d MS |
267 | ok $] >= 5.00319, $]; |
268 | ok $^O; | |
269 | ok $^T > 850000000, $^T; | |
66b1d557 | 270 | |
be708cc0 | 271 | if ($Is_VMS || $Is_Dos || $Is_MacOS) { |
44d95355 | 272 | skip("%ENV manipulations fail or aren't safe on $^O") for 1..4; |
66b1d557 HM |
273 | } |
274 | else { | |
da51b73c MHM |
275 | if ($ENV{PERL_VALGRIND}) { |
276 | skip("clearing \%ENV is not safe when running under valgrind"); | |
277 | } else { | |
278 | $PATH = $ENV{PATH}; | |
279 | $PDL = $ENV{PERL_DESTRUCT_LEVEL} || 0; | |
280 | $ENV{foo} = "bar"; | |
281 | %ENV = (); | |
282 | $ENV{PATH} = $PATH; | |
283 | $ENV{PERL_DESTRUCT_LEVEL} = $PDL || 0; | |
284 | ok ($Is_MSWin32 ? (`set foo 2>NUL` eq "") | |
285 | : (`echo \$foo` eq "\n") ); | |
286 | } | |
3e3baf6d | 287 | |
ec00bdd8 | 288 | $ENV{__NoNeSuCh} = "foo"; |
3e3baf6d | 289 | $0 = "bar"; |
26f6e342 NK |
290 | # cmd.exe will echo 'variable=value' but 4nt will echo just the value |
291 | # -- Nikola Knezevic | |
8efe09f7 | 292 | ok ($Is_MSWin32 ? (`set __NoNeSuCh` =~ /^(?:__NoNeSuCh=)?foo$/) |
ec00bdd8 | 293 | : (`echo \$__NoNeSuCh` eq "foo\n") ); |
09fdc078 SR |
294 | if ($^O =~ /^(linux|freebsd)$/ && |
295 | open CMDLINE, "/proc/$$/cmdline") { | |
296 | chomp(my $line = scalar <CMDLINE>); | |
297 | my $me = (split /\0/, $line)[0]; | |
ecce83c2 | 298 | ok($me eq $0, 'altering $0 is effective (testing with /proc/)'); |
09fdc078 | 299 | close CMDLINE; |
ecce83c2 JH |
300 | # perlbug #22811 |
301 | my $mydollarzero = sub { | |
302 | my($arg) = shift; | |
303 | $0 = $arg if defined $arg; | |
fbd3c14b SR |
304 | # In FreeBSD the ps -o command= will cause |
305 | # an empty header line, grab only the last line. | |
306 | my $ps = (`ps -o command= -p $$`)[-1]; | |
ecce83c2 JH |
307 | return if $?; |
308 | chomp $ps; | |
309 | printf "# 0[%s]ps[%s]\n", $0, $ps; | |
310 | $ps; | |
311 | }; | |
312 | my $ps = $mydollarzero->("x"); | |
e26ae24d | 313 | ok(!$ps # we allow that something goes wrong with the ps command |
80bca1b4 JH |
314 | # In Linux 2.4 we would get an exact match ($ps eq 'x') but |
315 | # in Linux 2.2 there seems to be something funny going on: | |
316 | # it seems as if the original length of the argv[] would | |
317 | # be stored in the proc struct and then used by ps(1), | |
318 | # no matter what characters we use to pad the argv[]. | |
319 | # (And if we use \0:s, they are shown as spaces.) Sigh. | |
320 | || $ps =~ /^x\s*$/ | |
6a4647a3 JH |
321 | # FreeBSD cannot get rid of both the leading "perl :" |
322 | # and the trailing " (perl)": some FreeBSD versions | |
323 | # can get rid of the first one. | |
d2e0b13f | 324 | || ($^O eq 'freebsd' && $ps =~ m/^(?:perl: )?x(?: \(perl\))?$/), |
e26ae24d | 325 | 'altering $0 is effective (testing with `ps`)'); |
09fdc078 | 326 | } else { |
651aa52e | 327 | skip("\$0 check only on Linux and FreeBSD") for 0, 1; |
09fdc078 | 328 | } |
66b1d557 | 329 | } |
3e3baf6d | 330 | |
c7213721 | 331 | { |
a45269de MS |
332 | my $ok = 1; |
333 | my $warn = ''; | |
334 | local $SIG{'__WARN__'} = sub { $ok = 0; $warn = join '', @_; }; | |
78987ded | 335 | $! = undef; |
a45269de | 336 | ok($ok, $warn, $Is_VMS ? "'\$!=undef' does throw a warning" : ''); |
78987ded HS |
337 | } |
338 | ||
902173a3 GS |
339 | # test case-insignificance of %ENV (these tests must be enabled only |
340 | # when perl is compiled with -DENV_IS_CASELESS) | |
2986a63f | 341 | if ($Is_MSWin32 || $Is_NetWare) { |
902173a3 GS |
342 | %ENV = (); |
343 | $ENV{'Foo'} = 'bar'; | |
344 | $ENV{'fOo'} = 'baz'; | |
0bee926d MS |
345 | ok (scalar(keys(%ENV)) == 1); |
346 | ok exists($ENV{'FOo'}); | |
347 | ok (delete($ENV{'foO'}) eq 'baz'); | |
348 | ok (scalar(keys(%ENV)) == 0); | |
902173a3 GS |
349 | } |
350 | else { | |
0bee926d | 351 | skip('no caseless %ENV support') for 1..4; |
902173a3 | 352 | } |
d2c93421 | 353 | |
43651d81 | 354 | if ($Is_miniperl) { |
13b238e6 | 355 | skip ("miniperl can't rely on loading %Errno") for 1..2; |
43651d81 | 356 | } else { |
126c71c8 YST |
357 | no warnings 'void'; |
358 | ||
d2c93421 RH |
359 | # Make sure Errno hasn't been prematurely autoloaded |
360 | ||
b79f7545 | 361 | ok !keys %Errno::; |
d2c93421 RH |
362 | |
363 | # Test auto-loading of Errno when %! is used | |
364 | ||
126c71c8 YST |
365 | ok scalar eval q{ |
366 | %!; | |
367 | defined %Errno::; | |
368 | }, $@; | |
369 | } | |
d2c93421 | 370 | |
43651d81 NC |
371 | if ($Is_miniperl) { |
372 | skip ("miniperl can't rely on loading %Errno"); | |
373 | } else { | |
374 | # Make sure that Errno loading doesn't clobber $! | |
d2c93421 | 375 | |
43651d81 NC |
376 | undef %Errno::; |
377 | delete $INC{"Errno.pm"}; | |
d2c93421 | 378 | |
43651d81 NC |
379 | open(FOO, "nonesuch"); # Generate ENOENT |
380 | my %errs = %{"!"}; # Cause Errno.pm to be loaded at run-time | |
381 | ok ${"!"}{ENOENT}; | |
382 | } | |
a4268c0a | 383 | |
b0e6f864 | 384 | ok $^S == 0 && defined $^S; |
0bee926d | 385 | eval { ok $^S == 1 }; |
b0e6f864 RGS |
386 | eval " BEGIN { ok ! defined \$^S } "; |
387 | ok $^S == 0 && defined $^S; | |
7c36658b MS |
388 | |
389 | ok ${^TAINT} == 0; | |
390 | eval { ${^TAINT} = 1 }; | |
391 | ok ${^TAINT} == 0; | |
9aa702ec MJD |
392 | |
393 | # 5.6.1 had a bug: @+ and @- were not properly interpolated | |
394 | # into double-quoted strings | |
395 | # 20020414 mjd-perl-patch+@plover.com | |
b64ebf53 JH |
396 | "I like pie" =~ /(I) (like) (pie)/; |
397 | ok "@-" eq "0 0 2 7"; | |
398 | ok "@+" eq "10 1 6 10"; | |
9aa702ec | 399 | |
f28098ff RGS |
400 | # Tests for the magic get of $\ |
401 | { | |
402 | my $ok = 0; | |
403 | # [perl #19330] | |
404 | { | |
405 | local $\ = undef; | |
406 | $\++; $\++; | |
407 | $ok = $\ eq 2; | |
408 | } | |
409 | ok $ok; | |
410 | $ok = 0; | |
411 | { | |
412 | local $\ = "a\0b"; | |
413 | $ok = "a$\b" eq "aa\0bb"; | |
414 | } | |
415 | ok $ok; | |
416 | } | |
547d1dd8 HS |
417 | |
418 | # Test for bug [perl #27839] | |
419 | { | |
420 | my $x; | |
421 | sub f { | |
422 | "abc" =~ /(.)./; | |
423 | $x = "@+"; | |
424 | return @+; | |
425 | }; | |
426 | my @y = f(); | |
427 | ok( $x eq "@y", "return a magic array ($x) vs (@y)" ); | |
428 | } |