summaryrefslogtreecommitdiff
path: root/cpan/File-Path
diff options
context:
space:
mode:
authorJosh ben Jore <jjore@cpan.org>2010-04-05 16:36:10 -0700
committerJesse Vincent <jesse@bestpractical.com>2010-04-06 10:54:54 -0400
commitc2c3358345e7fa3b89ecbd334f68d57057182d27 (patch)
treea27fe00e2a8c2dca97f167b061cfa79f5cd9465a /cpan/File-Path
parent4dfa489a8b653b67eac56af0c26b7caa9b97b904 (diff)
downloadperl-c2c3358345e7fa3b89ecbd334f68d57057182d27.tar.gz
Skip make_path group/user tests for darwin - it's nobody and nogroup ids are -1
Diffstat (limited to 'cpan/File-Path')
-rw-r--r--cpan/File-Path/t/Path.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpan/File-Path/t/Path.t b/cpan/File-Path/t/Path.t
index 346f32a7c5..a33c15a232 100644
--- a/cpan/File-Path/t/Path.t
+++ b/cpan/File-Path/t/Path.t
@@ -441,6 +441,8 @@ SKIP: {
unless $Config{d_getgrent};
skip 'not running as root', $skip_count
unless $< == 0;
+ skip "darwin's nobody and nogroup are -1", $skip_count
+ if $^O eq 'darwin';
my $dir_stem = $dir = catdir($tmp_base, 'owned-by');