mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 08:38:23 +00:00
require calls now require ./ to be prepended to the file since . is no longer guaranteed to be in @INC.
8 lines
129 B
Perl
8 lines
129 B
Perl
#!./perl
|
|
|
|
chdir 't' if -d 't';
|
|
@INC = ( '.', '../lib' );
|
|
|
|
our $UTF8 = (${^OPEN} || "") =~ /:utf8/;
|
|
require "../t/lib/common.pl";
|