From ed0c6a9e9c73cf6ce569d045d3853d13aea9eb00 Mon Sep 17 00:00:00 2001 From: Marcus Comstedt <marcus@mc.pp.se> Date: Sun, 5 Jan 2014 18:30:09 +0100 Subject: [PATCH] test_pike.pike: Double the watchdog timeout This compensates for the increase in amount of tests since 2005 when the old timeout was selected. --- lib/modules/Tools.pmod/Standalone.pmod/test_pike.pike | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/modules/Tools.pmod/Standalone.pmod/test_pike.pike b/lib/modules/Tools.pmod/Standalone.pmod/test_pike.pike index 078c47ca13..14f3b0634c 100755 --- a/lib/modules/Tools.pmod/Standalone.pmod/test_pike.pike +++ b/lib/modules/Tools.pmod/Standalone.pmod/test_pike.pike @@ -125,12 +125,12 @@ class WarningFlag { // #ifndef WATCHDOG_TIMEOUT -// 20 minutes should be enough.. +// 40 minutes should be enough.. #if !constant(_reset_dmalloc) -#define WATCHDOG_TIMEOUT 60*20 +#define WATCHDOG_TIMEOUT 60*40 #else // ... unless we're running dmalloc -#define WATCHDOG_TIMEOUT 60*80 +#define WATCHDOG_TIMEOUT 60*160 #endif #endif -- GitLab