summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2011-09-18 14:33:51 -0500
committerCraig A. Berry <craigberry@mac.com>2011-09-18 14:39:58 -0500
commit61602f40332e8d7cc1dd966d91f174a2bac67da0 (patch)
treefab5e729d04576960e53227ea5b1e6fb59c70039
parent2b7e2f6504a6e433a3306f483a10f50364a86f2c (diff)
downloadperl-61602f40332e8d7cc1dd966d91f174a2bac67da0.tar.gz
Update skip count in t/op/filetest.t after 433644eed.
-rw-r--r--t/op/filetest.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/filetest.t b/t/op/filetest.t
index c71030500b..f7948d0a8d 100644
--- a/t/op/filetest.t
+++ b/t/op/filetest.t
@@ -103,9 +103,9 @@ like $@, qr/^The stat preceding -l _ wasn't an lstat at /,
# ous op’s return value as a file name.
SKIP: {
use Perl::OSType 'os_type';
- if (os_type ne 'Unix') { skip "Not Unix", 1 }
+ if (os_type ne 'Unix') { skip "Not Unix", 2 }
chomp(my $ln = `which ln`);
- if ( ! -e $ln ) { skip "No ln" , 1 }
+ if ( ! -e $ln ) { skip "No ln" , 2 }
lstat "TEST";
`ln -s TEST 1`;
ok ! -l -e _, 'stacked -l uses previous stat, not previous retval';