diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2015-01-09 22:21:58 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2015-01-09 22:33:18 +0000 |
commit | 0fcb6a367491789c4ba3a99744c5373751a9aa56 (patch) | |
tree | 14a7b4a0c3b07da55a46b5e0c83e2bb1adc85e29 /cpan/ExtUtils-MakeMaker | |
parent | 9b6b7be8acad62650aa5c229e89fad6706c8a0b0 (diff) | |
download | perl-0fcb6a367491789c4ba3a99744c5373751a9aa56.tar.gz |
Removed TODO from pm_to_lib test in EUMM
And upstream fix for race condition applied
https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/commit/6f41d63
Diffstat (limited to 'cpan/ExtUtils-MakeMaker')
-rw-r--r-- | cpan/ExtUtils-MakeMaker/t/pm_to_blib.t | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cpan/ExtUtils-MakeMaker/t/pm_to_blib.t b/cpan/ExtUtils-MakeMaker/t/pm_to_blib.t index d82fe6a278..d83144b7af 100644 --- a/cpan/ExtUtils-MakeMaker/t/pm_to_blib.t +++ b/cpan/ExtUtils-MakeMaker/t/pm_to_blib.t @@ -68,13 +68,12 @@ local $ENV{PERL_INSTALL_QUIET}; # Rerun the Makefile.PL, pm_to_blib should rerun { + sleep 2; run_ok(qq{$perl Makefile.PL}); # XXX This is a fragile way to check that it reran. - TODO: { - local $TODO = 'This one is fragile on some systems for some reason that needs investigation'; - like run_ok($make), qr/^Skip /ms; - } + local $TODO = 'This one is fragile on some systems for some reason that needs investigation'; + like run_ok($make), qr/^Skip /ms; ok( -e "blib/lib/Big/Dummy.pm", "blib copied pm file" ); } |