#!/usr/bin/perl -w
BEGIN {
plan
skip_all
=>
'miniperl test only necessary for the perl core'
if
!
$ENV
{PERL_CORE};
plan
$ENV
{PERL_CORE} &&
$Config
{
'usecrosscompile'
}
? (
skip_all
=>
'cross-compiling and make not available'
)
:
'no_plan'
;
}
my
$perl
= which_perl();
my
$makefile
= makefile_name();
my
$make
= make_run();
{
chdir
't'
;
perl_lib;
ok( setup_recurs(),
'setup'
);
END {
ok(
chdir
File::Spec->updir );
ok( teardown_recurs(),
'teardown'
);
}
ok(
chdir
(
'Big-Dummy'
),
"chdir'd to Big-Dummy"
) ||
diag(
"chdir failed: $!"
);
}
{
run_ok(
qq{$perl Makefile.PL}
);
run_ok(
$make
);
}