diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-09 04:30:13 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-09 04:30:13 +0000 |
commit | 96eac031e9ad358951bd22ecf59b24bc5193580f (patch) | |
tree | 6a78f15c054a5e9243f5bbf05b5d991b367188d2 /lib/filetest.t | |
parent | c67bbae06fa560d08982cd38476ff29fb39ec78d (diff) | |
download | perl-96eac031e9ad358951bd22ecf59b24bc5193580f.tar.gz |
Better skip this test on OpenBSD and BSD/OS since it
does not seem to work (Slaven Rezic).
p4raw-id: //depot/perl@19457
Diffstat (limited to 'lib/filetest.t')
-rw-r--r-- | lib/filetest.t | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/filetest.t b/lib/filetest.t index 14fe63d2fb..32f286a685 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: $!"; |