Subject: | Useless hostname and login retrieval in t/fileevent.t |
t/fileevent.t reads:
chomp($HN = `hostname`);
$ME = getlogin;
The $HN and $ME variables are then used nowhere. I hit it when running the test on a system without hostname command:
Can't exec "hostname": No such file or directory at t/fileevent.t line 215, <DATA> line 77.
Use of uninitialized value $HN in scalar chomp at t/fileevent.t line 215, <DATA> line 77.
I recommend to remove those two useless lines.