From acdbb934c3ebfd7ed3a8e923cd6100a1c302e9e2 Mon Sep 17 00:00:00 2001 From: gregor herrmann Date: Tue, 5 Nov 2019 13:56:47 +0100 Subject: [PATCH] Raise timeout in t/debugger.t (RT#117107) The "debugger" test in t/debugger.t currently sets `alarm 5` which leads to reproducible failures on slow platforms like the Raspberry Pi 1. In practice the test can take over 10 seconds; setting the timeout to `30` should give plenty of wiggle room while still not blocking the whole tests for too long in case of failures. Fixes: RT#117107 --- t/debugger.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/debugger.t b/t/debugger.t index b9fde3a..82931ea 100644 --- a/t/debugger.t +++ b/t/debugger.t @@ -32,7 +32,7 @@ is eval { local $SIG{ALRM} = sub { die "Alarm!\n"; }; local $ENV{PERLDB_OPTS} = 'NonStop'; - alarm 5; + alarm 30; my $ret = qx{$^X "-Ilib" -dw t/simple.plx}; alarm 0; $ret;