diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-31 16:11:47 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-31 16:11:47 +0000 |
commit | 4b1e50d9fa18ee4261f92ca053be5f6c17c8db66 (patch) | |
tree | cc8c3202a3730c6d49b60a2f9dccb035f3a34bf9 /t/lib/glob-basic.t | |
parent | 3b802ac74ba4de2dc12e10989797433e91e2fab1 (diff) | |
download | perl-4b1e50d9fa18ee4261f92ca053be5f6c17c8db66.tar.gz |
Wrong alarm: cygwin's getpwuid() is just fine (from Gerrit P. Haase)
p4raw-id: //depot/perl@8283
Diffstat (limited to 't/lib/glob-basic.t')
-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 be3280c8ca..e8a2905add 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; |