diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2015-10-06 15:33:51 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2015-10-06 15:33:51 +0000 |
commit | 5c3cc83b26ac288c18a5fe7cc499b8dacc36460f (patch) | |
tree | 88e18b29308e525524f0e9262e72087508984f7f | |
parent | 4fdcf7b81379d9de0da6508ceb4a89e3b268b6e0 (diff) | |
download | bcm5719-llvm-5c3cc83b26ac288c18a5fe7cc499b8dacc36460f.tar.gz bcm5719-llvm-5c3cc83b26ac288c18a5fe7cc499b8dacc36460f.zip |
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.
llvm-svn: 249421
-rw-r--r-- | lldb/test/api/multiple-debuggers/multi-process-driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/api/multiple-debuggers/multi-process-driver.cpp b/lldb/test/api/multiple-debuggers/multi-process-driver.cpp index 397628a2a89..1c2689ff6c4 100644 --- a/lldb/test/api/multiple-debuggers/multi-process-driver.cpp +++ b/lldb/test/api/multiple-debuggers/multi-process-driver.cpp @@ -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 |