Module: tools Branch: master Commit: 1445ea351b83119323bbafe2ddbb5511346f4882 URL: https://source.winehq.org/git/tools.git/?a=commit;h=1445ea351b83119323bbafe2...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Jun 27 08:07:50 2018 +0200
testbot/CheckForWinetestUpdate: Fix the Wine reconfig timeout.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/bin/CheckForWinetestUpdate.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/testbot/bin/CheckForWinetestUpdate.pl b/testbot/bin/CheckForWinetestUpdate.pl index d3ef384..a570a1b 100755 --- a/testbot/bin/CheckForWinetestUpdate.pl +++ b/testbot/bin/CheckForWinetestUpdate.pl @@ -286,7 +286,9 @@ sub AddReconfigJob($) Debug(" $VMKey $VMType reconfig\n"); my $Task = $BuildStep->Tasks->Add(); $Task->VM($VM); - $Task->Timeout($ReconfigTimeout); + $Task->Timeout($VMType eq "wine" ? + 3 * $WineReconfigTimeout : # 3 full Wine builds + $ReconfigTimeout); # 1 overall timeout }
# Save the build step so the others can reference it.