Message-ID: <
20011226200813.A11903@Bagpuss.unfortu.net>
p4raw-id: //depot/perl@13906
if ($@ =~ /^Your vendor has not defined Socket macro AF_UNIX/) {
plan skip_all => 'No AF_UNIX';
} else {
- plan tests => 44;
+ plan tests => 45;
}
}
}
{
local $SIG{ALRM} = sub { warn "EOF on right took over 3 seconds" };
alarm 3;
+ $! = 0;
ok (eof RIGHT, "right is at EOF");
+ is ($!, '', 'and $! should report no error');
alarm 60;
}