In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/d04589db35f09d1a2397c7ca43216163acba7a2d?hp=33821f2f1514a9813696be8d26217081cabbf062>
- Log ----------------------------------------------------------------- commit d04589db35f09d1a2397c7ca43216163acba7a2d Author: Chris 'BinGOs' Williams <[email protected]> Date: Fri Mar 1 15:48:11 2013 +0000 Skip chflags tests in filetests.t on dragonflybsd DragonflyBSD's file tests don't seem to be chflags-aware: $ touch foo $ if [ -w foo ]; then echo "Yes"; fi Yes $ chflags uchg foo $ if [ -w foo ]; then echo "Yes"; fi Yes versus FreeBSD: $ touch foo $ if [ -w foo ]; then echo "Yes"; fi Yes $ chflags uchg foo $ if [ -w foo ]; then echo "Yes"; fi $ ----------------------------------------------------------------------- Summary of changes: lib/filetest.t | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/filetest.t b/lib/filetest.t index 98a19bd..5088611 100644 --- a/lib/filetest.t +++ b/lib/filetest.t @@ -57,6 +57,7 @@ SKIP: { my $chflags = "/usr/bin/chflags"; my $tstfile = "filetest.tst"; skip("No $chflags available", 4) if !-x $chflags; + skip("Dragonfly filetests seem non-chflags aware", 4) if $^O eq 'dragonfly'; my $skip_eff_user_tests = (!$Config{d_setreuid} && !$Config{d_setresuid}) || -- Perl5 Master Repository
