Skip Menu |

This queue is for tickets about the Tickit-Async CPAN distribution.

Report information
The Basics
Id: 109039
Status: open
Priority: 0/
Queue: Tickit-Async

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.18
Fixed in: (no value)



Subject: Tests fail with Tickit >= 0.51
See http://analysis.cpantesters.org/reports_by_field?distv=Tickit-Async-0.18;field=mod%3ATickit --- there are only FAIL reports if Tickit 0.51 .. 0.54 is installed.
On 2015-11-16 22:33:24, SREZIC wrote: Show quoted text
> See http://analysis.cpantesters.org/reports_by_field?distv=Tickit- > Async-0.18;field=mod%3ATickit --- there are only FAIL reports if > Tickit 0.51 .. 0.54 is installed.
That's due to a SIGPIPE - tests pass but the script fails on a write just before the exit. The following patch fixes it for me: diff --git a/t/04timer.t b/t/04timer.t index f2bfc96..22768d3 100644 --- a/t/04timer.t +++ b/t/04timer.t @@ -12,6 +12,8 @@ use Time::HiRes qw( time ); use Tickit::Async; +$SIG{PIPE} = 'ignore'; + my $loop = IO::Async::Loop->new(); testing_loop( $loop );