1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
use strict;
use warnings;
use Test::More;
BEGIN {
plan skip_all => "PP tests not applicable for this perl $]"
if "$]" > 5.009_004;
plan skip_all => "All tests already executed in PP mode"
unless eval { require Class::C3::XS };
}
use Config;
use IPC::Open2 qw(open2);
use File::Glob 'bsd_glob';
use Cwd ();
# for the $^X-es
$ENV{PERL5LIB} = join ($Config{path_sep}, @INC);
# rerun the tests under the assumption of pure-perl
my $this_file = Cwd::realpath(__FILE__);
my @tests = grep $this_file ne Cwd::realpath($_), bsd_glob("t/*.t");
plan tests => scalar @tests;
for my $fn (@tests) {
local $ENV{DEVEL_HIDE_VERBOSE} = 0;
my @cmd = (
$^X,
'-It/lib',
'-MHideModule=Class::C3::XS',
$fn
);
# this is cheating, and may even hang here and there (testing on windows passed fine)
# if it does - will have to fix it somehow (really *REALLY* don't want to pull
# in IPC::Cmd just for a fucking test)
# the alternative would be to have an ENV check in each test to force a subtest
open2(my $out, my $in, @cmd);
while (my $ln = <$out>) {
print " $ln";
}
wait;
ok (! $?, "Exit $? from: @cmd");
}
done_testing;
|