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

# DESCRIPTION: Perl ExtUtils: Common routines required by package tests
#
# Copyright 2001-2017 by Wilson Snyder. This program is free software;
# you can redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
use vars qw($PERL);
$PERL = "$^X -Iblib/arch -Iblib/lib";
mkdir 'test_dir',0777;
if (!$ENV{HARNESS_ACTIVE}) {
use lib '.';
use lib '..';
use lib "blib/lib";
use lib "blib/arch";
}
1;