diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-10-20 06:04:04 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-10-20 06:04:04 +0000 |
commit | 4a30c06bd54cc1d9f8821019596ec5449d182a2e (patch) | |
tree | 62f78f2696fbc6bc0c2ff28acda808a902919eaa | |
parent | bb443f97c2b5dfbb53285f377a01d882f53de1c7 (diff) | |
download | perl-4a30c06bd54cc1d9f8821019596ec5449d182a2e.tar.gz |
Skip the chflags tests in filetest.t on Darwin.
p4raw-id: //depot/perl@21503
-rw-r--r-- | lib/filetest.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/filetest.t b/lib/filetest.t index 32f286a685..7ea977295a 100644 --- a/lib/filetest.t +++ b/lib/filetest.t @@ -57,8 +57,8 @@ SKIP: { my $tstfile = "filetest.tst"; skip("No $chflags available", 4) if !-x $chflags; - skip("Test does not work on OpenBSD and BSD/OS", 4) - if $^O =~ /^(?:openbsd|bsdos)$/; + skip("Test does not work on OpenBSD, BSD/OS, and Darwin", 4) + if $^O =~ /^(?:openbsd|bsdos|darwin)$/; SKIP: { eval { |