In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/33821f2f1514a9813696be8d26217081cabbf062?hp=a020bf3d37e0dc87613f504e21905a093bd15aac>
- Log ----------------------------------------------------------------- commit 33821f2f1514a9813696be8d26217081cabbf062 Author: Chris 'BinGOs' Williams <[email protected]> Date: Fri Mar 1 14:22:45 2013 +0000 Skip tests in File::Copy tests on DragonflyBSD too Setting 0100, 0300 and 0500 on files is totally non-reversable ----------------------------------------------------------------------- Summary of changes: lib/File/Copy.t | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/lib/File/Copy.t b/lib/File/Copy.t index ded1b57..1e6c9cb 100644 --- a/lib/File/Copy.t +++ b/lib/File/Copy.t @@ -267,6 +267,9 @@ SKIP: { if $^O eq "MSWin32"; skip "Copy maps POSIX permissions to VOS permissions.", $skips if $^O eq "vos"; + skip "There be dragons here with DragonflyBSD.", $skips + if $^O eq 'dragonfly'; + # Just a sub to get better failure messages. sub __ ($) { -- Perl5 Master Repository
