[Lldb-commits] [lldb] r249421 - Reduce load on TestMultipleDebuggers.
Todd Fiala via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 6 08:33:51 PDT 2015
Author: tfiala
Date: Tue Oct 6 10:33:51 2015
New Revision: 249421
URL: http://llvm.org/viewvc/llvm-project?rev=249421&view=rev
Log:
Reduce load on TestMultipleDebuggers.
4-core CPUs have a hard time keeping up with the number of debuggers
we were simultaneously spawning. This leads to a timeout, which
leaves processes hanging around in "suspended mode", which can't be
killed with signals.
Modified:
lldb/trunk/test/api/multiple-debuggers/multi-process-driver.cpp
Modified: lldb/trunk/test/api/multiple-debuggers/multi-process-driver.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/api/multiple-debuggers/multi-process-driver.cpp?rev=249421&r1=249420&r2=249421&view=diff
==============================================================================
--- lldb/trunk/test/api/multiple-debuggers/multi-process-driver.cpp (original)
+++ lldb/trunk/test/api/multiple-debuggers/multi-process-driver.cpp Tue Oct 6 10:33:51 2015
@@ -25,7 +25,7 @@
#include <chrono>
#include <thread>
-#define NUMBER_OF_SIMULTANEOUS_DEBUG_SESSIONS 50
+#define NUMBER_OF_SIMULTANEOUS_DEBUG_SESSIONS 20
#define DEBUG 0
More information about the lldb-commits
mailing list