Module: tools Branch: master Commit: 48be4beddec5c708f08fe584cd8afced5d68fa49 URL: http://source.winehq.org/git/tools.git/?a=commit;h=48be4beddec5c708f08fe584c...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Dec 15 07:55:46 2017 +0100
testbot: Set $MaxRevertsWhileRunningVMs = 0 in the default configuration.
It's the safe option as it ensure the revert will not interfere with the tests.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/lib/WineTestBot/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/lib/WineTestBot/Config.pm b/testbot/lib/WineTestBot/Config.pm index b0492a3..8388a0e 100644 --- a/testbot/lib/WineTestBot/Config.pm +++ b/testbot/lib/WineTestBot/Config.pm @@ -67,7 +67,7 @@ $BinDir = "$::RootDir/bin";
# See the ScheduleOnHost() documentation in lib/WineTestBot/Jobs.pm $MaxRevertingVMs = 1; -$MaxRevertsWhileRunningVMs = 1; +$MaxRevertsWhileRunningVMs = 0; $MaxActiveVMs = 2; $MaxVMsWhenIdle = undef;