From: Jarkko Hietaniemi Date: Sun, 31 Dec 2000 16:11:47 +0000 (+0000) Subject: Wrong alarm: cygwin's getpwuid() is just fine (from Gerrit P. Haase) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4b1e50d9fa18ee4261f92ca053be5f6c17c8db66;p=p5sagit%2Fp5-mst-13.2.git Wrong alarm: cygwin's getpwuid() is just fine (from Gerrit P. Haase) p4raw-id: //depot/perl@8283 --- diff --git a/t/lib/glob-basic.t b/t/lib/glob-basic.t index be3280c..e8a2905 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' && $^O ne 'cygwin') { +if ($^O ne 'MSWin32' && $^O ne 'VMS') { eval { ($name, $home) = (getpwuid($>))[0,7]; 1;