diff options
author | Ingo Weinhold <unknown> | 2004-11-30 15:38:32 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-12-01 13:44:24 +0000 |
commit | dbc1d98621f53e4a3938cf011ae90a189e72f69f (patch) | |
tree | 10af181eb3e36b988f92fa611324750c78226ee7 /ext/File | |
parent | acd8d558460f297a79cf62ccca790c90790f8058 (diff) | |
download | perl-dbc1d98621f53e4a3938cf011ae90a189e72f69f.tar.gz |
[perl #32717] BeOS specific Updates
From: Ingo Weinhold (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.0.11-32717-101307.19.7097750538509@perl.org>
p4raw-id: //depot/perl@23584
Diffstat (limited to 'ext/File')
-rwxr-xr-x | ext/File/Glob/t/basic.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/File/Glob/t/basic.t b/ext/File/Glob/t/basic.t index 00bd740612..fc168b8ce7 100755 --- a/ext/File/Glob/t/basic.t +++ b/ext/File/Glob/t/basic.t @@ -44,7 +44,8 @@ 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 'NetWare' && $^O ne 'VMS' && $^O ne 'os2') { +if ($^O ne 'MSWin32' && $^O ne 'NetWare' && $^O ne 'VMS' && $^O ne 'os2' + && $^O ne 'beos') { eval { ($name, $home) = (getpwuid($>))[0,7]; 1; |