From: Gerrit P. Haase Date: Sun, 17 Dec 2000 21:46:39 +0000 (+0100) Subject: RE: perl@8150 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ec68f363483885ed31575a17dede3de9e3bc91da;p=p5sagit%2Fp5-mst-13.2.git RE: perl@8150 Message-ID: <3A3D343F.13566.1ACA7D93@localhost> Neither cygwin has a getpwuid() one can trust on. p4raw-id: //depot/perl@8158 --- diff --git a/t/lib/glob-basic.t b/t/lib/glob-basic.t index e8a2905..be3280c 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;