[ROSAUTOTEST] A timeout of 120 seconds kills the msi:action test prematurely, so...
authorColin Finck <colin@reactos.org>
Fri, 26 Apr 2019 08:30:24 +0000 (10:30 +0200)
committerColin Finck <colin@reactos.org>
Fri, 26 Apr 2019 08:31:02 +0000 (10:31 +0200)
This is still below the 180 seconds before sysreg2 kills the entire VM.
I've added a comment to clarify that.

modules/rostests/rosautotest/CWineTest.cpp

index 6e16397..9967d2d 100644 (file)
@@ -8,7 +8,11 @@
 #include "precomp.h"
 
 static const DWORD ListTimeout = 10000;
-static const DWORD ProcessActivityTimeout = 120000;
+
+// This value needs to be lower than the <timeout> configured in sysreg.xml! (usually 180000)
+// Otherwise, sysreg2 kills the VM before we can kill the process.
+static const DWORD ProcessActivityTimeout = 170000;
+
 
 /**
  * Constructs a CWineTest object.