Author: David Spickett
Date: 2024-10-09T08:51:38Z
New Revision: 146d3f04ff92e396ea40ab581304e65e8511d8ac

URL: 
https://github.com/llvm/llvm-project/commit/146d3f04ff92e396ea40ab581304e65e8511d8ac
DIFF: 
https://github.com/llvm/llvm-project/commit/146d3f04ff92e396ea40ab581304e65e8511d8ac.diff

LOG: [lldb][test] Disable TestSharedLibStrippedSymbols on Arm

This has been flakey lately for example:
https://lab.llvm.org/buildbot/#/builders/18/builds/5139

Added: 
    

Modified: 
    
lldb/test/API/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py

Removed: 
    


################################################################################
diff  --git 
a/lldb/test/API/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
 
b/lldb/test/API/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
index 55857d703978c6..fec0a7a037d67d 100644
--- 
a/lldb/test/API/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
+++ 
b/lldb/test/API/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
@@ -10,6 +10,10 @@
 
 class SharedLibStrippedTestCase(TestBase):
     @expectedFailureAll(oslist=["windows"])
+    # Sometimes fails with:
+    # error: Couldn't allocate space for materialized struct: Couldn't malloc: 
address space is full
+    # On 32 bit Arm Linux.
+    @skipIf(archs=["arm"])
     def test_expr(self):
         """Test that types work when defined in a shared library and 
forward-declared in the main executable"""
         if "clang" in self.getCompiler() and "3.4" in 
self.getCompilerVersion():


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to