This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Skip chflags tests in filetests.t on dragonflybsd
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Fri, 1 Mar 2013 15:48:11 +0000 (15:48 +0000)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Fri, 1 Mar 2013 16:04:43 +0000 (16:04 +0000)
commitd04589db35f09d1a2397c7ca43216163acba7a2d
treeb881bdb9ab5660d4ddba815b4a22c02cabf434df
parent33821f2f1514a9813696be8d26217081cabbf062
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
  $
lib/filetest.t