[Lldb-commits] [lldb] 146d3f0 - [lldb][test] Disable TestSharedLibStrippedSymbols on Arm
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 9 01:53:13 PDT 2024
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():
More information about the lldb-commits
mailing list