3 # Tests for Perl run-time environment variable settings
5 # $PERL5OPT, $PERL5LIB, etc.
10 require Config; import Config;
12 skip_all_without_config('d_fork');
17 my $STDOUT = tempfile();
18 my $STDERR = tempfile();
19 my $PERL = $ENV{PERL} || './perl';
20 my $FAILURE_CODE = 119;
23 delete $ENV{PERL5LIB};
24 delete $ENV{PERL5OPT};
27 # Run perl with specified environment and arguments, return (STDOUT, STDERR)
28 sub runperl_and_capture {
30 my ($env, $args) = @_;
34 delete $ENV{PERL5LIB};
35 delete $ENV{PERL5OPT};
37 return (0, "Couldn't fork: $!") unless defined $pid; # failure
40 return (0, "Failure in child.\n") if ($?>>8) == $FAILURE_CODE;
42 open my $stdout, '<', $STDOUT
43 or return (0, "Couldn't read $STDOUT file: $!");
44 open my $stderr, '<', $STDERR
45 or return (0, "Couldn't read $STDERR file: $!");
47 # Empty file with <$stderr> returns nothing in list context
48 # (because there are no lines) Use scalar to force it to ''
49 return (scalar <$stdout>, scalar <$stderr>);
51 for my $k (keys %$env) {
52 $ENV{$k} = $env->{$k};
54 open STDOUT, '>', $STDOUT or exit $FAILURE_CODE;
55 open STDERR, '>', $STDERR and do { exec $PERL, @$args };
57 print STDOUT "IWHCWJIHCI\cNHJWCJQWKJQJWCQW\n";
63 my ($env, $args, $stdout, $stderr) = @_;
64 my ($actual_stdout, $actual_stderr) = runperl_and_capture($env, $args);
65 local $::Level = $::Level + 1;
67 ok ( $actual_stdout =~/$stdout/ );
69 is ($stdout, $actual_stdout);
72 ok ( $actual_stderr =~/$stderr/);
74 is ($stderr, $actual_stderr);
78 # PERL5OPT Command-line options (switches). Switches in
79 # this variable are taken as if they were on
80 # every Perl command line. Only the -[DIMUdmtw]
81 # switches are allowed. When running taint
82 # checks (because the program was running setuid
83 # or setgid, or the -T switch was used), this
84 # variable is ignored. If PERL5OPT begins with
85 # -T, tainting will be enabled, and any
86 # subsequent options ignored.
88 try({PERL5OPT => '-w'}, ['-e', 'print $::x'],
90 qq{Name "main::x" used only once: possible typo at -e line 1.\nUse of uninitialized value \$x in print at -e line 1.\n});
92 try({PERL5OPT => '-Mstrict'}, ['-I../lib', '-e', 'print $::x'],
95 try({PERL5OPT => '-Mstrict'}, ['-I../lib', '-e', 'print $x'],
97 qq{Global symbol "\$x" requires explicit package name at -e line 1.\nExecution of -e aborted due to compilation errors.\n});
100 try({PERL5OPT => '-Mstrict -w'}, ['-I../lib', '-e', 'print $x'],
102 qq{Global symbol "\$x" requires explicit package name at -e line 1.\nExecution of -e aborted due to compilation errors.\n});
105 try({PERL5OPT => '-w -Mstrict'}, ['-I../lib', '-e', 'print $::x'],
108 Name "main::x" used only once: possible typo at -e line 1.
109 Use of uninitialized value \$x in print at -e line 1.
114 try({PERL5OPT => '-w -Mstrict'}, ['-I../lib', '-e', 'print $::x'],
117 Name "main::x" used only once: possible typo at -e line 1.
118 Use of uninitialized value \$x in print at -e line 1.
122 try({PERL5OPT => '-MExporter'}, ['-I../lib', '-e0'],
127 try({PERL5OPT => '-MExporter -MExporter'}, ['-I../lib', '-e0'],
131 try({PERL5OPT => '-Mstrict -Mwarnings'},
132 ['-I../lib', '-e', 'print "ok" if $INC{"strict.pm"} and $INC{"warnings.pm"}'],
136 open my $fh, ">", "Oooof.pm" or die "Can't write Oooof.pm: $!";
137 print $fh "package Oooof; 1;\n";
139 END { 1 while unlink "Oooof.pm" }
141 try({PERL5OPT => '-I. -MOooof'},
142 ['-e', 'print "ok" if $INC{"Oooof.pm"} eq "Oooof.pm"'],
146 try({PERL5OPT => '-I./ -MOooof'},
147 ['-e', 'print "ok" if $INC{"Oooof.pm"} eq "Oooof.pm"'],
151 try({PERL5OPT => '-w -w'},
152 ['-e', 'print $ENV{PERL5OPT}'],
156 try({PERL5OPT => '-t'},
157 ['-e', 'print ${^TAINT}'],
161 try({PERL5OPT => '-W'},
162 ['-I../lib','-e', 'local $^W = 0; no warnings; print $x'],
165 Name "main::x" used only once: possible typo at -e line 1.
166 Use of uninitialized value \$x in print at -e line 1.
170 try({PERLLIB => "foobar$Config{path_sep}42"},
171 ['-e', 'print grep { $_ eq "foobar" } @INC'],
175 try({PERLLIB => "foobar$Config{path_sep}42"},
176 ['-e', 'print grep { $_ eq "42" } @INC'],
180 try({PERL5LIB => "foobar$Config{path_sep}42"},
181 ['-e', 'print grep { $_ eq "foobar" } @INC'],
185 try({PERL5LIB => "foobar$Config{path_sep}42"},
186 ['-e', 'print grep { $_ eq "42" } @INC'],
190 try({PERL5LIB => "foo",
192 ['-e', 'print grep { $_ eq "foo" } @INC'],
196 try({PERL5LIB => "foo",
198 ['-e', 'print grep { $_ eq "bar" } @INC'],
202 try({PERL_HASH_SEED_DEBUG => 1},
205 qr/HASH_FUNCTION =/);
207 try({PERL_HASH_SEED_DEBUG => 1},
212 try({PERL_HASH_SEED_DEBUG => 1, PERL_HASH_SEED => "12345678"},
215 qr/HASH_SEED = 0x12345678/);
217 try({PERL_HASH_SEED_DEBUG => 1, PERL_HASH_SEED => "12"},
220 qr/HASH_SEED = 0x12000000/);
222 try({PERL_HASH_SEED_DEBUG => 1, PERL_HASH_SEED => "123456789"},
225 qr/HASH_SEED = 0x12345678/);
226 # Tests for S_incpush_use_sep():
228 my @dump_inc = ('-e', 'print "$_\n" foreach @INC');
230 my ($out, $err) = runperl_and_capture({}, [@dump_inc]);
232 is ($err, '', 'No errors when determining @INC');
234 my @default_inc = split /\n/, $out;
236 is ($default_inc[-1], '.', '. is last in @INC');
238 my $sep = $Config{path_sep};
239 foreach (['nothing', ''],
240 ['something', 'zwapp', 'zwapp'],
241 ['two things', "zwapp${sep}bam", 'zwapp', 'bam'],
242 ['two things, ::', "zwapp${sep}${sep}bam", 'zwapp', 'bam'],
243 [': at start', "${sep}zwapp", 'zwapp'],
244 [': at end', "zwapp${sep}", 'zwapp'],
245 [':: sandwich ::', "${sep}${sep}zwapp${sep}${sep}", 'zwapp'],
247 ['::', "${sep}${sep}"],
248 [':::', "${sep}${sep}${sep}"],
249 ['two things and :', "zwapp${sep}bam${sep}", 'zwapp', 'bam'],
250 [': and two things', "${sep}zwapp${sep}bam", 'zwapp', 'bam'],
251 [': two things :', "${sep}zwapp${sep}bam${sep}", 'zwapp', 'bam'],
252 ['three things', "zwapp${sep}bam${sep}${sep}owww",
253 'zwapp', 'bam', 'owww'],
255 my ($name, $lib, @expect) = @$_;
256 push @expect, @default_inc;
258 ($out, $err) = runperl_and_capture({PERL5LIB => $lib}, [@dump_inc]);
260 is ($err, '', "No errors when determining \@INC for $name");
262 my @inc = split /\n/, $out;
264 is (scalar @inc, scalar @expect,
265 "expected number of elements in \@INC for $name");
267 is ("@inc", "@expect", "expected elements in \@INC for $name");
270 # PERL5LIB tests with included arch directories still missing