diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-03 15:37:35 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-03 15:37:35 +0000 |
commit | 3acb6bcd1a901f84bfce64680bedea321811824a (patch) | |
tree | 4d66989a1a8f0fcb6d897cf1ab32a5349eb49b82 /lib/filetest.t | |
parent | 43b06338a7352a1850e7b7e6294bfb12026353ad (diff) | |
download | perl-3acb6bcd1a901f84bfce64680bedea321811824a.tar.gz |
Must skip more.
p4raw-id: //depot/perl@19395
Diffstat (limited to 'lib/filetest.t')
-rw-r--r-- | lib/filetest.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/filetest.t b/lib/filetest.t index c206f5143f..02879c3702 100644 --- a/lib/filetest.t +++ b/lib/filetest.t @@ -5,7 +5,7 @@ BEGIN { @INC = '../lib'; } -use Test::More tests => 15; +use Test::More tests => 13; # these two should be kept in sync with the pragma itself # if hint bits are changed there, other things *will* break @@ -55,7 +55,7 @@ SKIP: { # This works for systems with /usr/bin/chflags (i.e. BSD4.4 systems). my $chflags = "/usr/bin/chflags"; my $tstfile = "filetest.tst"; - skip("No $chflags available", 2) if !-x $chflags; + skip("No $chflags available", 4) if !-x $chflags; SKIP: { eval { @@ -66,7 +66,7 @@ SKIP: { system($chflags, "uchg", $tstfile); die "Can't exec $chflags uchg" if $? != 0; }; - skip("Errors in test using chflags: $@", 2) if $@; + skip("Errors in test using chflags: $@", 4) if $@; { use filetest 'access'; |