summaryrefslogtreecommitdiff
path: root/t/op/mkdir.t
diff options
context:
space:
mode:
Diffstat (limited to 't/op/mkdir.t')
-rw-r--r--t/op/mkdir.t14
1 files changed, 5 insertions, 9 deletions
diff --git a/t/op/mkdir.t b/t/op/mkdir.t
index 6c71e68313..bd0d1b42fe 100644
--- a/t/op/mkdir.t
+++ b/t/op/mkdir.t
@@ -25,15 +25,11 @@ like($!, qr/cannot find|such|exist|not found|not a directory|unknown/i);
ok(mkdir('blurfl'));
ok(rmdir('blurfl'));
-SKIP: {
- # trailing slashes will be removed before the system call to mkdir
- # but we don't care for MacOS ...
- skip("MacOS", 4) if $^O eq 'MacOS';
- ok(mkdir('blurfl///'));
- ok(-d 'blurfl');
- ok(rmdir('blurfl///'));
- ok(!-d 'blurfl');
-}
+# trailing slashes will be removed before the system call to mkdir
+ok(mkdir('blurfl///'));
+ok(-d 'blurfl');
+ok(rmdir('blurfl///'));
+ok(!-d 'blurfl');
# test default argument