From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/perl -w
# Test that PERL5LIB is propogated from the harness process to the test
# process.
use strict;
use lib 't/lib';
use Config;
my $path_sep = $Config{path_sep};
sub has_crazy_patch {
my $sentinel = 'blirpzoffle';
local $ENV{PERL5LIB} = $sentinel;
my $command = join ' ',
map {qq{"$_"}} ( $^X, '-e', 'print join q(:), @INC' );
my $path = `$command`;
my @got = ( $path =~ /($sentinel)/g );
return @got > 1;
}
$^O eq 'VMS' ? ( skip_all => 'VMS' )
: has_crazy_patch() ? ( skip_all => 'Incompatible @INC patch' )
: ( tests => 1 )
);
# Change PERL5LIB so we ensure it's preserved.
$ENV{PERL5LIB} = join(
$path_sep, 'wibble',
$ENV{PERL5LIB} || ''
);
open TEST, ">perl5lib_check.t.tmp";
print TEST <<"END";
#!/usr/bin/perl
use strict;
use Test::More tests => 1;
like \$ENV{PERL5LIB}, qr/(^|${path_sep})wibble${path_sep}/;
END
close TEST;
END { 1 while unlink 'perl5lib_check.t.tmp'; }
my $h = TAP::Harness->new( { lib => ['something'], verbosity => -3 } );
ok( !$h->runtests('perl5lib_check.t.tmp')->has_errors );
1;