[Lldb-commits] [lldb] [lldb] Improving dotest script flags. (PR #143797)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 12 01:22:25 PDT 2025


================
@@ -665,17 +668,23 @@ def iter_filters():
         filtered = True
         print("adding filter spec %s to module %s" % (filterspec, repr(module)))
         tests = unittest.defaultTestLoader.loadTestsFromName(filterspec, module)
-        configuration.suite.addTests(tests)
+        # Add the test -# times.
----------------
DavidSpickett wrote:

Out of the context of this PR, this looks like a typo. How about:
```
# Add the test as many times as "-# <N>" specified.
```
Or, did not specify I suppose. N is 1 by default I assume.

https://github.com/llvm/llvm-project/pull/143797


More information about the lldb-commits mailing list