You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IPC::Run is has a broken test in t/pty.t because IO::Pty objects are not closing all of their file handles when they are destroyed.
https://github.com/toddr/IPC-Run/issues/130
On Fedora 29 and Redhat 8, file handle 4 doesn't reliably close. I've seen it close occasionally so this failure isn't even consistent.
$>perl -MIO::Pty -MIPC::Run::Debug -wE'print __FILE__ . " " . __LINE__ . " " . IPC::Run::Debug::_map_fds() . "\n";my $h = IO::Pty->new; print __FILE__ . " " . __LINE__ . " " . IPC::Run::Debug::_map_fds() . "\n";undef $h; print __FILE__ . " " . __LINE__ . " " . IPC::Run::Debug::_map_fds() . "\n";'
-e 1 012---------
-e 1 012345------
-e 1 012-4-------
Migrated from rt.cpan.org#130491 (status was 'new')
Requestors:
From [email protected] on 2019-09-11 07:07:08
:
From [email protected] on 2019-09-11 07:08:51
:
From [email protected] on 2019-09-11 07:16:34
:
The text was updated successfully, but these errors were encountered: