summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2017-10-25 11:24:52 +0100
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2017-10-25 11:25:51 +0100
commit0cdc775ef423ad6415e6f80b9244c17a52bf5149 (patch)
treeb0e72c2c2abe429c74a2a36fddbff3c40342627b /dist
parent8c91ebab27b4f4b751019d9af4256121c08a67ed (diff)
downloadperl-0cdc775ef423ad6415e6f80b9244c17a52bf5149.tar.gz
Fix missing skip counts in PathTools' cwd.t
Diffstat (limited to 'dist')
-rw-r--r--dist/PathTools/t/cwd.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/PathTools/t/cwd.t b/dist/PathTools/t/cwd.t
index 57fd866fbd..8cf3586271 100644
--- a/dist/PathTools/t/cwd.t
+++ b/dist/PathTools/t/cwd.t
@@ -248,8 +248,8 @@ SKIP: {
SKIP: {
my $dir = "${$}a\nx";
- mkdir $dir or skip "OS does not support dir names containing LF";
- chdir $dir or skip "OS cannot chdir into LF";
+ mkdir $dir or skip "OS does not support dir names containing LF", 1;
+ chdir $dir or skip "OS cannot chdir into LF", 1;
eval { Cwd::fast_abs_path() };
is $@, "", 'fast_abs_path does not die in dir whose name contains LF';
chdir File::Spec->updir;