From: Jarkko Hietaniemi Date: Fri, 9 May 2003 04:30:13 +0000 (+0000) Subject: Better skip this test on OpenBSD and BSD/OS since it X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=96eac031e9ad358951bd22ecf59b24bc5193580f;p=p5sagit%2Fp5-mst-13.2.git Better skip this test on OpenBSD and BSD/OS since it does not seem to work (Slaven Rezic). p4raw-id: //depot/perl@19457 --- diff --git a/lib/filetest.t b/lib/filetest.t index 14fe63d..32f286a 100644 --- a/lib/filetest.t +++ b/lib/filetest.t @@ -57,7 +57,10 @@ SKIP: { my $tstfile = "filetest.tst"; skip("No $chflags available", 4) if !-x $chflags; - SKIP: { + skip("Test does not work on OpenBSD and BSD/OS", 4) + if $^O =~ /^(?:openbsd|bsdos)$/; + + SKIP: { eval { if (!-e $tstfile) { open(T, ">$tstfile") or die "Can't create $tstfile: $!";