In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/cfc6b1ed3a0eabcc03845bd71d4357d9c62155b6?hp=98fa38977b839d4721d5eb77d505f6c7841b1fdb>
- Log ----------------------------------------------------------------- commit cfc6b1ed3a0eabcc03845bd71d4357d9c62155b6 Author: Jarkko Hietaniemi <[email protected]> Date: Mon Jul 28 15:52:56 2014 -0400 Skip ext/GDBM_File/t/fatal.t in Darwin, too flaky. (random crashes at destruction time) See https://rt.perl.org/Public/Bug/Display.html?id=117967 and jhi ran into this in OS 10.9.4 + blead + gdbm 1.11 (gdbm via macports, but shouldn't matter much: flaky is flaky). ----------------------------------------------------------------------- Summary of changes: ext/GDBM_File/t/fatal.t | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/GDBM_File/t/fatal.t b/ext/GDBM_File/t/fatal.t index e15e5e2..b7045ba 100644 --- a/ext/GDBM_File/t/fatal.t +++ b/ext/GDBM_File/t/fatal.t @@ -8,6 +8,10 @@ BEGIN { plan(skip_all => "GDBM_File was not built") unless $Config{extensions} =~ /\bGDBM_File\b/; + # https://rt.perl.org/Public/Bug/Display.html?id=117967 + plan(skip_all => "GDBM_File is flaky in $^O") + if $^O =~ /darwin/; + plan(tests => 8); use_ok('GDBM_File'); } -- Perl5 Master Repository
