This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Added porting tests for CUSTOMIZED files
[perl5.git] / t / op / magic.t
CommitLineData
8d063cd8
LW
1#!./perl
2
90ce63d5 3BEGIN {
90ce63d5
RS
4 $| = 1;
5 chdir 't' if -d 't';
20822f61 6 @INC = '../lib';
5e9f035f 7 require './test.pl';
0ea03996 8 plan (tests => 150);
5e9f035f
FC
9}
10
11# Test that defined() returns true for magic variables created on the fly,
12# even before they have been created.
13# This must come first, even before turning on warnings or setting up
14# $SIG{__WARN__}, to avoid invalidating the tests. warnings.pm currently
15# does not mention any special variables, but that could easily change.
16BEGIN {
811a7562 17 # not available in miniperl
b82b06b8 18 my %non_mini = map { $_ => 1 } qw(+ - [);
5e9f035f
FC
19 for (qw(
20 SIG ^OPEN ^TAINT ^UNICODE ^UTF8LOCALE ^WARNING_BITS 1 2 3 4 5 6 7 8
23496c6e 21 9 42 & ` ' : ? ! _ - [ ^ ~ = % . ( ) < > \ / $ | + ; ] ^A ^C ^D
b4155db2 22 ^E ^F ^H ^I ^L ^N ^O ^P ^S ^T ^V ^W ^UTF8CACHE ::12345 main::98732
5e9f035f
FC
23 )) {
24 my $v = $_;
25 # avoid using any global vars here:
26 if ($v =~ s/^\^(?=.)//) {
27 for(substr $v, 0, 1) {
28 $_ = chr ord() - 64;
29 }
30 }
811a7562
TC
31 SKIP:
32 {
33 skip_if_miniperl("the module for *$_ may not be available in "
34 . "miniperl", 1) if $non_mini{$_};
35 ok defined *$v, "*$_ appears to be defined at the outset";
36 }
5e9f035f
FC
37 }
38}
39
40# This must be in a separate BEGIN block, as the mere mention of ${^TAINT}
41# will invalidate the test for it.
42BEGIN {
0409250f 43 $ENV{PATH} = '/bin' if ${^TAINT};
774d564b 44 $SIG{__WARN__} = sub { die "Dying on warning: ", @_ };
90ce63d5 45}
8d063cd8 46
9f1b1f2d 47use warnings;
04fee9b5 48use Config;
9f1b1f2d 49
0bee926d 50
43651d81
NC
51$Is_MSWin32 = $^O eq 'MSWin32';
52$Is_NetWare = $^O eq 'NetWare';
53$Is_VMS = $^O eq 'VMS';
54$Is_Dos = $^O eq 'dos';
55$Is_os2 = $^O eq 'os2';
56$Is_Cygwin = $^O eq 'cygwin';
43651d81 57$Is_MPE = $^O eq 'mpeix';
dbc1d986 58$Is_BeOS = $^O eq 'beos';
be708cc0 59
c8d62b71
RGS
60$PERL = $ENV{PERL}
61 || ($Is_NetWare ? 'perl' :
7b903762 62 $Is_VMS ? $^X :
c8d62b71
RGS
63 $Is_MSWin32 ? '.\perl' :
64 './perl');
68dc0745 65
8df0e0ed
JM
66END {
67 # On VMS, environment variable changes are peristent after perl exits
68 delete $ENV{'FOO'} if $Is_VMS;
69}
70
39e571d4 71eval '$ENV{"FOO"} = "hi there";'; # check that ENV is inited inside eval
26f6e342
NK
72# cmd.exe will echo 'variable=value' but 4nt will echo just the value
73# -- Nikola Knezevic
b2978f4e 74if ($Is_MSWin32) { like `set FOO`, qr/^(?:FOO=)?hi there$/; }
b2978f4e
NC
75elsif ($Is_VMS) { is `write sys\$output f\$trnlnm("FOO")`, "hi there\n"; }
76else { is `echo \$FOO`, "hi there\n"; }
8d063cd8 77
ba2406eb 78unlink_all 'ajslkdfpqjsjfk';
8d063cd8 79$! = 0;
90ce63d5 80open(FOO,'ajslkdfpqjsjfk');
b2978f4e 81isnt($!, 0);
90ce63d5 82close FOO; # just mention it, squelch used-only-once
8d063cd8 83
b2978f4e
NC
84SKIP: {
85 skip('SIGINT not safe on this platform', 5)
7b903762 86 if $Is_MSWin32 || $Is_NetWare || $Is_Dos || $Is_MPE;
c363d00c
CB
87 # the next tests are done in a subprocess because sh spits out a
88 # newline onto stderr when a child process kills itself with SIGINT.
04fee9b5 89 # We use a pipe rather than system() because the VMS command buffer
c363d00c
CB
90 # would overflow with a command that long.
91
5e9f035f
FC
92 # For easy interpolation of test numbers:
93 $next_test = curr_test() - 1;
94 sub TIEARRAY {bless[]}
95 sub FETCH { $next_test + pop }
96 tie my @tn, __PACKAGE__;
97
c363d00c
CB
98 open( CMDPIPE, "| $PERL");
99
5e9f035f 100 print CMDPIPE "\$t1 = $tn[1]; \$t2 = $tn[2];\n", <<'END';
378cc40b 101
79072805 102 $| = 1; # command buffering
378cc40b 103
5e9f035f
FC
104 $SIG{"INT"} = "ok1"; kill "INT",$$; sleep 1;
105 $SIG{"INT"} = "IGNORE"; kill "INT",$$; sleep 1; print "ok $t2\n";
106 $SIG{"INT"} = "DEFAULT"; kill "INT",$$; sleep 1; print" not ok $t2\n";
79072805 107
5e9f035f 108 sub ok1 {
79072805 109 if (($x = pop(@_)) eq "INT") {
5e9f035f 110 print "ok $t1\n";
79072805
LW
111 }
112 else {
5e9f035f 113 print "not ok $t1 ($x @_)\n";
79072805
LW
114 }
115 }
116
117END
c363d00c
CB
118
119 close CMDPIPE;
120
2d4fcd5e 121 open( CMDPIPE, "| $PERL");
5e9f035f 122 print CMDPIPE "\$t3 = $tn[3];\n", <<'END';
2d4fcd5e
AJ
123
124 { package X;
125 sub DESTROY {
126 kill "INT",$$;
127 }
128 }
129 sub x {
130 my $x=bless [], 'X';
131 return sub { $x };
132 }
133 $| = 1; # command buffering
5e9f035f 134 $SIG{"INT"} = "ok3";
2d4fcd5e
AJ
135 {
136 local $SIG{"INT"}=x();
137 print ""; # Needed to expose failure in 5.8.0 (why?)
138 }
139 sleep 1;
140 delete $SIG{"INT"};
141 kill "INT",$$; sleep 1;
5e9f035f
FC
142 sub ok3 {
143 print "ok $t3\n";
2d4fcd5e
AJ
144 }
145END
146 close CMDPIPE;
bb4e15c8 147 $? >>= 8 if $^O eq 'VMS'; # POSIX status hiding in 2nd byte
639cf43b 148 my $todo = ($^O eq 'os2' ? ' # TODO: EMX v0.9d_fix4 bug: wrong nibble? ' : '');
5e9f035f 149 print $? & 0xFF ? "ok $tn[4]$todo\n" : "not ok $tn[4]$todo\n";
2d4fcd5e 150
6e592b3a
BM
151 open(CMDPIPE, "| $PERL");
152 print CMDPIPE <<'END';
153
154 sub PVBM () { 'foo' }
155 index 'foo', PVBM;
156 my $pvbm = PVBM;
157
158 sub foo { exit 0 }
159
160 $SIG{"INT"} = $pvbm;
161 kill "INT", $$; sleep 1;
162END
163 close CMDPIPE;
164 $? >>= 8 if $^O eq 'VMS';
5e9f035f 165 print $? ? "not ok $tn[5]\n" : "ok $tn[5]\n";
6e592b3a 166
b2978f4e 167 curr_test(curr_test() + 5);
68dc0745 168}
a687059c 169
68dc0745 170# can we slice ENV?
171@val1 = @ENV{keys(%ENV)};
a687059c 172@val2 = values(%ENV);
b2978f4e
NC
173is join(':',@val1), join(':',@val2);
174cmp_ok @val1, '>', 1;
90ce63d5
RS
175
176# regex vars
177'foobarbaz' =~ /b(a)r/;
b2978f4e
NC
178is $`, 'foo';
179is $&, 'bar';
180is $', 'baz';
181is $+, 'a';
90ce63d5
RS
182
183# $"
184@a = qw(foo bar baz);
b2978f4e 185is "@a", "foo bar baz";
90ce63d5
RS
186{
187 local $" = ',';
b2978f4e 188 is "@a", "foo,bar,baz";
90ce63d5 189}
a687059c 190
90ce63d5
RS
191# $;
192%h = ();
193$h{'foo', 'bar'} = 1;
b2978f4e 194is((keys %h)[0], "foo\034bar");
90ce63d5
RS
195{
196 local $; = 'x';
197 %h = ();
198 $h{'foo', 'bar'} = 1;
b2978f4e 199 is((keys %h)[0], 'fooxbar');
90ce63d5 200}
ed6116ce 201
90ce63d5 202# $?, $@, $$
7b903762
RGS
203system qq[$PERL "-I../lib" -e "use vmsish qw(hushed); exit(0)"];
204is $?, 0;
205system qq[$PERL "-I../lib" -e "use vmsish qw(hushed); exit(1)"];
206isnt $?, 0;
90ce63d5
RS
207
208eval { die "foo\n" };
b2978f4e 209is $@, "foo\n";
90ce63d5 210
b2978f4e 211cmp_ok($$, '>', 0);
41e07bbc 212my $pid = $$;
9cdac2a2
FC
213eval { $$ = 42 };
214is $$, 42, '$$ can be modified';
215SKIP: {
216 skip "no fork", 1 unless $Config{d_fork};
217 (my $kidpid = open my $fh, "-|") // skip "cannot fork: $!", 1;
218 if($kidpid) { # parent
219 my $kiddollars = <$fh>;
220 close $fh or die "cannot close pipe from kid proc: $!";
221 is $kiddollars, $kidpid, '$$ is reset on fork';
222 }
223 else { # child
224 print $$;
225 $::NO_ENDING = 1; # silence "Looks like you only ran..."
226 exit;
227 }
228}
41e07bbc 229$$ = $pid; # Tests below use $$
90ce63d5
RS
230
231# $^X and $0
ed37317b 232{
ae60cb46
NC
233 my $is_abs = $Config{d_procselfexe} || $Config{usekernprocpathname}
234 || $Config{usensgetexecutablepath};
3e3baf6d 235 if ($^O eq 'qnx') {
7fbf1995 236 chomp($wd = `/usr/bin/fullpath -t`);
68dc0745 237 }
2982a345 238 elsif($Is_Cygwin || $is_abs) {
1cab015a
EF
239 # Cygwin turns the symlink into the real file
240 chomp($wd = `pwd`);
241 $wd =~ s#/t$##;
0409250f 242 $wd =~ /(.*)/; $wd = $1; # untaint
6178c52a
JH
243 if ($Is_Cygwin) {
244 $wd = Cygwin::win_to_posix_path(Cygwin::posix_to_win_path($wd, 1));
245 }
1cab015a 246 }
ed344e4f
IZ
247 elsif($Is_os2) {
248 $wd = Cwd::sys_cwd();
249 }
68dc0745 250 else {
251 $wd = '.';
252 }
2982a345 253 my $perl = $Is_VMS || $is_abs ? $^X : "$wd/perl";
ed37317b 254 my $headmaybe = '';
6178c52a 255 my $middlemaybe = '';
ed37317b 256 my $tailmaybe = '';
68dc0745 257 $script = "$wd/show-shebang";
ed37317b
TB
258 if ($Is_MSWin32) {
259 chomp($wd = `cd`);
8ac9c18d
GS
260 $wd =~ s|\\|/|g;
261 $perl = "$wd/perl.exe";
262 $script = "$wd/show-shebang.bat";
ed37317b
TB
263 $headmaybe = <<EOH ;
264\@rem ='
265\@echo off
266$perl -x \%0
267goto endofperl
268\@rem ';
269EOH
270 $tailmaybe = <<EOT ;
271
272__END__
273:endofperl
274EOT
275 }
ed344e4f
IZ
276 elsif ($Is_os2) {
277 $script = "./show-shebang";
278 }
c363d00c
CB
279 elsif ($Is_VMS) {
280 $script = "[]show-shebang";
be708cc0 281 }
6178c52a
JH
282 elsif ($Is_Cygwin) {
283 $middlemaybe = <<'EOX'
284$^X = Cygwin::win_to_posix_path(Cygwin::posix_to_win_path($^X, 1));
285$0 = Cygwin::win_to_posix_path(Cygwin::posix_to_win_path($0, 1));
286EOX
287 }
a1a0e61e 288 if ($^O eq 'os390' or $^O eq 'posix-bc' or $^O eq 'vmesa') { # no shebang
9d116dd7
JH
289 $headmaybe = <<EOH ;
290 eval 'exec ./perl -S \$0 \${1+"\$\@"}'
291 if 0;
292EOH
293 }
2eecd615 294 $s1 = "\$^X is $perl, \$0 is $script\n";
0409250f 295 ok open(SCRIPT, ">$script") or diag "Can't write to $script: $!";
b2978f4e 296 ok print(SCRIPT $headmaybe . <<EOB . $middlemaybe . <<'EOF' . $tailmaybe) or diag $!;
0f77baf6 297#!$perl
774d564b 298EOB
90ce63d5
RS
299print "\$^X is $^X, \$0 is $0\n";
300EOF
b2978f4e
NC
301 ok close(SCRIPT) or diag $!;
302 ok chmod(0755, $script) or diag $!;
7b903762 303 $_ = $Is_VMS ? `$perl $script` : `$script`;
ed344e4f 304 s/\.exe//i if $Is_Dos or $Is_Cygwin or $Is_os2;
dbc1d986 305 s{./$script}{$script} if $Is_BeOS; # revert BeOS execvp() side-effect
ed37317b 306 s{is perl}{is $perl}; # for systems where $^X is only a basename
a6c40364 307 s{\\}{/}g;
b2978f4e
NC
308 if ($Is_MSWin32 || $Is_os2) {
309 is uc $_, uc $s1;
310 } else {
311 is $_, $s1;
312 }
ed37317b 313 $_ = `$perl $script`;
4bbb7126 314 s/\.exe//i if $Is_Dos or $Is_os2 or $Is_Cygwin;
dbc1d986 315 s{./$perl}{$perl} if $Is_BeOS; # revert BeOS execvp() side-effect
a6c40364 316 s{\\}{/}g;
b2978f4e
NC
317 if ($Is_MSWin32 || $Is_os2) {
318 is uc $_, uc $s1;
319 } else {
320 is $_, $s1;
321 }
322 ok unlink($script) or diag $!;
ba2406eb
BG
323 # CHECK
324 # Could this be replaced with:
325 # unlink_all($script);
68dc0745 326}
ed6116ce 327
90ce63d5 328# $], $^O, $^T
b2978f4e 329cmp_ok $], '>=', 5.00319;
0bee926d 330ok $^O;
b2978f4e 331cmp_ok $^T, '>', 850000000;
66b1d557 332
881ddac4
SH
333# Test change 25062 is working
334my $orig_osname = $^O;
335{
336local $^I = '.bak';
b2978f4e 337is $^O, $orig_osname, 'Assigning $^I does not clobber $^O';
881ddac4
SH
338}
339$^O = $orig_osname;
340
065144c6
TC
341{
342 #RT #72422
343 foreach my $p (0, 1) {
344 fresh_perl_is(<<"EOP", '2 4 8', undef, "test \$^P = $p");
345\$DB::single = 2;
346\$DB::trace = 4;
347\$DB::signal = 8;
348\$^P = $p;
349print "\$DB::single \$DB::trace \$DB::signal";
350EOP
351 }
352}
353
7636ea95
AB
354# Check that assigning to $0 on Linux sets the process name with both
355# argv[0] assignment and by calling prctl()
356{
357 SKIP: {
358 skip "We don't have prctl() here", 2 unless $Config{d_prctl_set_name};
359
360 # We don't really need these tests. prctl() is tested in the
361 # Kernel, but test it anyway for our sanity. If something doesn't
362 # work (like if the system doesn't have a ps(1) for whatever
363 # reason) just bail out gracefully.
364 my $maybe_ps = sub {
365 my ($cmd) = @_;
366 local ($?, $!);
367
368 no warnings;
369 my $res = `$cmd`;
3a46d15c 370 skip "Couldn't shell out to '$cmd', returned code $?", 2 if $?;
7636ea95
AB
371 return $res;
372 };
373
374 my $name = "Good Morning, Dave";
375 $0 = $name;
376
377 chomp(my $argv0 = $maybe_ps->("ps h $$"));
378 chomp(my $prctl = $maybe_ps->("ps hc $$"));
379
380 like($argv0, $name, "Set process name through argv[0] ($argv0)");
381 like($prctl, substr($name, 0, 15), "Set process name through prctl() ($prctl)");
382 }
383}
384
c7213721 385{
a45269de
MS
386 my $ok = 1;
387 my $warn = '';
ae8ade65 388 local $SIG{'__WARN__'} = sub { $ok = 0; $warn = join '', @_; $warn =~ s/\n$//; };
78987ded 389 $! = undef;
b2978f4e
NC
390 local $TODO = $Is_VMS ? "'\$!=undef' does throw a warning" : '';
391 ok($ok, $warn);
78987ded
HS
392}
393
b2978f4e 394SKIP: {
d3d1232e 395 skip_if_miniperl("miniperl can't rely on loading %Errno", 2);
126c71c8
YST
396 no warnings 'void';
397
d2c93421
RH
398# Make sure Errno hasn't been prematurely autoloaded
399
b79f7545 400 ok !keys %Errno::;
d2c93421
RH
401
402# Test auto-loading of Errno when %! is used
403
126c71c8
YST
404 ok scalar eval q{
405 %!;
902fde96 406 scalar %Errno::;
126c71c8
YST
407 }, $@;
408}
d2c93421 409
b2978f4e 410SKIP: {
d3d1232e 411 skip_if_miniperl("miniperl can't rely on loading %Errno", 1);
43651d81 412 # Make sure that Errno loading doesn't clobber $!
d2c93421 413
43651d81
NC
414 undef %Errno::;
415 delete $INC{"Errno.pm"};
d2c93421 416
43651d81
NC
417 open(FOO, "nonesuch"); # Generate ENOENT
418 my %errs = %{"!"}; # Cause Errno.pm to be loaded at run-time
419 ok ${"!"}{ENOENT};
420}
a4268c0a 421
ccdda9cb 422# Check that we don't auto-load packages
976bd1ee
DM
423SKIP: {
424 skip "staticly linked; may be preloaded", 4 unless $Config{usedl};
425 foreach (['powie::!', 'Errno'],
426 ['powie::+', 'Tie::Hash::NamedCapture']) {
427 my ($symbol, $package) = @$_;
428 foreach my $scalar_first ('', '$$symbol;') {
429 my $desc = qq{Referencing %{"$symbol"}};
430 $desc .= qq{ after mentioning \${"$symbol"}} if $scalar_first;
431 $desc .= " doesn't load $package";
432
433 fresh_perl_is(<<"EOP", 0, {}, $desc);
ccdda9cb
NC
434use strict qw(vars subs);
435my \$symbol = '$symbol';
436$scalar_first;
4371 if %{\$symbol};
438print scalar %${package}::;
439EOP
976bd1ee 440 }
ccdda9cb
NC
441 }
442}
443
b2978f4e
NC
444is $^S, 0;
445eval { is $^S,1 };
b0e6f864 446eval " BEGIN { ok ! defined \$^S } ";
b2978f4e 447is $^S, 0;
7c36658b 448
0409250f
RGS
449my $taint = ${^TAINT};
450is ${^TAINT}, $taint;
7c36658b 451eval { ${^TAINT} = 1 };
0409250f 452is ${^TAINT}, $taint;
9aa702ec
MJD
453
454# 5.6.1 had a bug: @+ and @- were not properly interpolated
455# into double-quoted strings
456# 20020414 mjd-perl-patch+@plover.com
b64ebf53 457"I like pie" =~ /(I) (like) (pie)/;
b2978f4e
NC
458is "@-", "0 0 2 7";
459is "@+", "10 1 6 10";
9aa702ec 460
f28098ff
RGS
461# Tests for the magic get of $\
462{
463 my $ok = 0;
464 # [perl #19330]
465 {
466 local $\ = undef;
467 $\++; $\++;
468 $ok = $\ eq 2;
469 }
470 ok $ok;
471 $ok = 0;
472 {
473 local $\ = "a\0b";
474 $ok = "a$\b" eq "aa\0bb";
475 }
476 ok $ok;
477}
547d1dd8 478
4c9140ed 479# Test for bug [perl #36434]
b2978f4e
NC
480# Can not do this test on VMS, EPOC, and SYMBIAN according to comments
481# in mg.c/Perl_magic_clear_all_env()
482SKIP: {
483 skip('Can\'t make assignment to \%ENV on this system', 3) if $Is_VMS;
484
4c9140ed
RGS
485 local @ISA;
486 local %ENV;
e1a479c5
BB
487 # This used to be __PACKAGE__, but that causes recursive
488 # inheritance, which is detected earlier now and broke
489 # this test
490 eval { push @ISA, __FILE__ };
b2978f4e 491 is $@, '', 'Push a constant on a magic array';
4c9140ed
RGS
492 $@ and print "# $@";
493 eval { %ENV = (PATH => __PACKAGE__) };
b2978f4e 494 is $@, '', 'Assign a constant to a magic hash';
d8084ca5
DM
495 $@ and print "# $@";
496 eval { my %h = qw(A B); %ENV = (PATH => (keys %h)[0]) };
b2978f4e 497 is $@, '', 'Assign a shared key to a magic hash';
4c9140ed
RGS
498 $@ and print "# $@";
499}
179c85a2
NC
500
501# Tests for Perl_magic_clearsig
502foreach my $sig (qw(__WARN__ INT)) {
503 $SIG{$sig} = lc $sig;
504 is $SIG{$sig}, 'main::' . lc $sig, "Can assign to $sig";
505 is delete $SIG{$sig}, 'main::' . lc $sig, "Can delete from $sig";
506 is $SIG{$sig}, undef, "$sig is now gone";
507 is delete $SIG{$sig}, undef, "$sig remains gone";
508}
509
510# And now one which doesn't exist;
511{
512 no warnings 'signal';
513 $SIG{HUNGRY} = 'mmm, pie';
514}
515is $SIG{HUNGRY}, 'mmm, pie', 'Can assign to HUNGRY';
516is delete $SIG{HUNGRY}, 'mmm, pie', 'Can delete from HUNGRY';
517is $SIG{HUNGRY}, undef, "HUNGRY is now gone";
518is delete $SIG{HUNGRY}, undef, "HUNGRY remains gone";
519
520# Test deleting signals that we never set
c8be058c 521foreach my $sig (qw(__DIE__ _BOGUS_HOOK KILL THIRSTY)) {
179c85a2
NC
522 is $SIG{$sig}, undef, "$sig is not present";
523 is delete $SIG{$sig}, undef, "delete of $sig returns undef";
524}
be1cf43c
NC
525
526{
527 $! = 9999;
528 is int $!, 9999, q{[perl #72850] Core dump in bleadperl from perl -e '$! = 9999; $a = $!;'};
529
530}
4c0f30d6 531
0ea03996
FC
532SKIP: {
533 skip_if_miniperl("No XS in miniperl", 3);
534
535 for ( [qw( %- Tie::Hash::NamedCapture )], [qw( $[ arybase )],
536 [qw( %! Errno )] ) {
537 my ($var, $mod) = @$_;
538 my $modfile = $mod =~ s|::|/|gr . ".pm";
539 fresh_perl_is
540 qq 'sub UNIVERSAL::AUTOLOAD{}
541 $mod\::foo() if 0;
542 $var;
543 print "ok\\n" if \$INC{"$modfile"}',
544 "ok\n",
545 { switches => [ '-X' ] },
546 "$var still loads $mod when stash and UNIVERSAL::AUTOLOAD exist";
547 }
548}
549
61ec922c
NC
550# ^^^^^^^^^ New tests go here ^^^^^^^^^
551
552SKIP: {
553 skip("%ENV manipulations fail or aren't safe on $^O", 4)
554 if $Is_VMS || $Is_Dos;
555
556 SKIP: {
557 skip("clearing \%ENV is not safe when running under valgrind")
558 if $ENV{PERL_VALGRIND};
559
560 $PATH = $ENV{PATH};
561 $PDL = $ENV{PERL_DESTRUCT_LEVEL} || 0;
562 $ENV{foo} = "bar";
563 %ENV = ();
564 $ENV{PATH} = $PATH;
565 $ENV{PERL_DESTRUCT_LEVEL} = $PDL || 0;
566 if ($Is_MSWin32) {
567 is `set foo 2>NUL`, "";
568 } else {
569 is `echo \$foo`, "\n";
570 }
571 }
572
573 $ENV{__NoNeSuCh} = "foo";
574 $0 = "bar";
575# cmd.exe will echo 'variable=value' but 4nt will echo just the value
576# -- Nikola Knezevic
577 if ($Is_MSWin32) {
578 like `set __NoNeSuCh`, qr/^(?:__NoNeSuCh=)?foo$/;
579 } else {
580 is `echo \$__NoNeSuCh`, "foo\n";
581 }
582 SKIP: {
583 skip("\$0 check only on Linux and FreeBSD", 2)
584 unless $^O =~ /^(linux|freebsd)$/
585 && open CMDLINE, "/proc/$$/cmdline";
586
587 chomp(my $line = scalar <CMDLINE>);
588 my $me = (split /\0/, $line)[0];
589 is $me, $0, 'altering $0 is effective (testing with /proc/)';
590 close CMDLINE;
591 # perlbug #22811
592 my $mydollarzero = sub {
593 my($arg) = shift;
594 $0 = $arg if defined $arg;
595 # In FreeBSD the ps -o command= will cause
596 # an empty header line, grab only the last line.
597 my $ps = (`ps -o command= -p $$`)[-1];
598 return if $?;
599 chomp $ps;
600 printf "# 0[%s]ps[%s]\n", $0, $ps;
601 $ps;
602 };
603 my $ps = $mydollarzero->("x");
604 ok(!$ps # we allow that something goes wrong with the ps command
605 # In Linux 2.4 we would get an exact match ($ps eq 'x') but
606 # in Linux 2.2 there seems to be something funny going on:
607 # it seems as if the original length of the argv[] would
608 # be stored in the proc struct and then used by ps(1),
609 # no matter what characters we use to pad the argv[].
610 # (And if we use \0:s, they are shown as spaces.) Sigh.
611 || $ps =~ /^x\s*$/
612 # FreeBSD cannot get rid of both the leading "perl :"
613 # and the trailing " (perl)": some FreeBSD versions
614 # can get rid of the first one.
615 || ($^O eq 'freebsd' && $ps =~ m/^(?:perl: )?x(?: \(perl\))?$/),
616 'altering $0 is effective (testing with `ps`)');
617 }
618}
619
620# test case-insignificance of %ENV (these tests must be enabled only
621# when perl is compiled with -DENV_IS_CASELESS)
622SKIP: {
623 skip('no caseless %ENV support', 4) unless $Is_MSWin32 || $Is_NetWare;
624
625 %ENV = ();
626 $ENV{'Foo'} = 'bar';
627 $ENV{'fOo'} = 'baz';
628 is scalar(keys(%ENV)), 1;
629 ok exists $ENV{'FOo'};
630 is delete $ENV{'foO'}, 'baz';
631 is scalar(keys(%ENV)), 0;
632}
633
634__END__
635
636# Put new tests before the various ENV tests, as they blow %ENV away.