[Lldb-commits] [lldb] 93a1327 - [lldb] Skip TestLibcxxInternalsRecognizer on asan + MacOS

Felipe de Azevedo Piovezan via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 19 06:27:28 PST 2025


Author: Felipe de Azevedo Piovezan
Date: 2025-11-19T14:27:13Z
New Revision: 93a1327deaef7abd5c2bf5caf4c4ef40d34460f6

URL: https://github.com/llvm/llvm-project/commit/93a1327deaef7abd5c2bf5caf4c4ef40d34460f6
DIFF: https://github.com/llvm/llvm-project/commit/93a1327deaef7abd5c2bf5caf4c4ef40d34460f6.diff

LOG: [lldb] Skip TestLibcxxInternalsRecognizer on asan + MacOS

Unfortunately, in this configuration, the bots are forced to use the
system libcxx, which is too old for what this test is verifying.
In the future, we should re-enable building libcxx with asan on MacOS.

Added: 
    

Modified: 
    lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py b/lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py
index eeb5d1b554b01..280ac7185fd1f 100644
--- a/lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py
+++ b/lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py
@@ -5,6 +5,7 @@
 
 import re
 
+ at skipIf(macos_version=[">=", "15.4"], asan=True)
 class LibCxxInternalsRecognizerTestCase(TestBase):
     NO_DEBUG_INFO_TESTCASE = True
 


        


More information about the lldb-commits mailing list