diff options
author | Gerrit P. Haase <gp@familiehaase.de> | 2000-12-17 22:46:39 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-17 23:04:24 +0000 |
commit | ec68f363483885ed31575a17dede3de9e3bc91da (patch) | |
tree | 843ed747dfa17b6f5f8de48a4baecd432b3d1550 /t/lib | |
parent | b1705298148a0d7d4cad519fbae5f7fdd7e14f9b (diff) | |
download | perl-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-x | t/lib/glob-basic.t | 2 |
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; |