From 840cd2eda0db0393fa321a7694d1f5af83ae036d Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Mon, 27 Mar 2017 20:16:24 -0500 Subject: [PATCH] put the exception test back to the way it was (and it PASSES :D) --- xs/t/22_exception.t | 3 --- 1 file changed, 3 deletions(-) diff --git a/xs/t/22_exception.t b/xs/t/22_exception.t index b57255fa5f..ca2ffea89c 100644 --- a/xs/t/22_exception.t +++ b/xs/t/22_exception.t @@ -8,10 +8,7 @@ use Test::More tests => 1; { eval { - local $SIG{ALRM} = sub { die "Timed out waiting for exception\n" }; # NB: \n required - alarm 30; Slic3r::xspp_test_croak_hangs_on_strawberry(); - alarm 0; }; is $@, "xspp_test_croak_hangs_on_strawberry: exception catched\n", 'croak from inside a C++ exception delivered'; }