Author: Raphael Isemann Date: 2026-06-05T08:56:54+01:00 New Revision: 59bdd5b63b1a649d5bfc7d422c2b4173c582d114
URL: https://github.com/llvm/llvm-project/commit/59bdd5b63b1a649d5bfc7d422c2b4173c582d114 DIFF: https://github.com/llvm/llvm-project/commit/59bdd5b63b1a649d5bfc7d422c2b4173c582d114.diff LOG: [lldb][test] Make TestInterruptThreadNames not depend on debug info (#201553) This test only reads the pthread names, which don't depend on any debug info. This halves the runtime of this very long test from 22s to 11s. Added: Modified: lldb/test/API/macosx/thread-names/TestInterruptThreadNames.py Removed: ################################################################################ diff --git a/lldb/test/API/macosx/thread-names/TestInterruptThreadNames.py b/lldb/test/API/macosx/thread-names/TestInterruptThreadNames.py index 9a3339579de03..9b99aae8214ae 100644 --- a/lldb/test/API/macosx/thread-names/TestInterruptThreadNames.py +++ b/lldb/test/API/macosx/thread-names/TestInterruptThreadNames.py @@ -9,6 +9,8 @@ class TestInterruptThreadNames(TestBase): + NO_DEBUG_INFO_TESTCASE = True + @skipUnlessDarwin @add_test_categories(["pyapi"]) def test_with_python_api(self): _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
