Subject: Test results for perl5.005_53 under NEXTSTEP 3.3 (intel)
To: perlbug@perl.com
Lines: 47
Message-ID: <MLIST_
9811201533.AA22148@AWT.nl>
p4raw-id: //depot/cfgperl@2264
my $GR = "/etc/group";
- if ($Config{'i_grp'} ne 'define' or not -f $GR or not open(GR, $GR)) {
+ if ($Config{'i_grp'} ne 'define' or not -f $GR or not open(GR, $GR)
+ # NeXTstep /etc/group is used only at boot time,
+ # after that it's up to NetInfo and NIS/YP.
+ or $^O eq 'next'
+ ) {
print "1..0\n";
exit 0;
}
my $PW = "/etc/passwd";
- if ($Config{'i_pwd'} ne 'define' or not -f $PW or not open(PW, $PW)) {
+ if ($Config{'i_pwd'} ne 'define' or not -f $PW or not open(PW, $PW)
+ # NeXTstep /etc/passwd is used only at boot time,
+ # after that it's up to NetInfo and NIS/YP.
+ or $^O eq 'next'
+ ) {
print "1..0\n";
exit 0;
}