[Lldb-commits] [PATCH] D13555: Cap test threads on Windows to avoid open file limit

Adrian McCarthy via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 12 07:48:54 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL250044: Switch threading mode for tests on Windows when there are lots of cores. (authored by amccarth).

Changed prior to commit:
  http://reviews.llvm.org/D13555?vs=36993&id=37111#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D13555

Files:
  lldb/trunk/test/dosep.py

Index: lldb/trunk/test/dosep.py
===================================================================
--- lldb/trunk/test/dosep.py
+++ lldb/trunk/test/dosep.py
@@ -1254,10 +1254,13 @@
         # Use the serial runner.
         test_runner_name = "serial"
     elif os.name == "nt":
-        # Currently the multiprocessing test runner with ctrl-c
-        # support isn't running correctly on nt.  Use the pool
-        # support without ctrl-c.
-        test_runner_name = "threading-pool"
+        # On Windows, Python uses CRT with a low limit on the number of open
+        # files.  If you have a lot of cores, the threading-pool runner will
+        # often fail because it exceeds that limit.
+        if num_threads > 32:
+            test_runner_name = "multiprocessing-pool"
+        else:
+            test_runner_name = "threading-pool"
     elif is_darwin_version_lower_than(
             distutils.version.StrictVersion("10.10.0")):
         # OS X versions before 10.10 appear to have an issue using


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13555.37111.patch
Type: text/x-patch
Size: 1013 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20151012/9f56a498/attachment-0001.bin>


More information about the lldb-commits mailing list