On 2015-11-16 22:33:24, SREZIC wrote:
Show quoted text
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 );