summaryrefslogtreecommitdiff
path: root/t/lib
diff options
context:
space:
mode:
authorGerrit P. Haase <gp@familiehaase.de>2000-12-17 22:46:39 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2000-12-17 23:04:24 +0000
commitec68f363483885ed31575a17dede3de9e3bc91da (patch)
tree843ed747dfa17b6f5f8de48a4baecd432b3d1550 /t/lib
parentb1705298148a0d7d4cad519fbae5f7fdd7e14f9b (diff)
downloadperl-ec68f363483885ed31575a17dede3de9e3bc91da.tar.gz
RE: perl@8150
Message-ID: <3A3D343F.13566.1ACA7D93@localhost> Neither cygwin has a getpwuid() one can trust on. p4raw-id: //depot/perl@8158
Diffstat (limited to 't/lib')
-rwxr-xr-xt/lib/glob-basic.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/glob-basic.t b/t/lib/glob-basic.t
index e8a2905add..be3280c8ca 100755
--- a/t/lib/glob-basic.t
+++ b/t/lib/glob-basic.t
@@ -39,7 +39,7 @@ print "ok 2\n";
# look up the user's home directory
# should return a list with one item, and not set ERROR
-if ($^O ne 'MSWin32' && $^O ne 'VMS') {
+if ($^O ne 'MSWin32' && $^O ne 'VMS' && $^O ne 'cygwin') {
eval {
($name, $home) = (getpwuid($>))[0,7];
1;