Skip to content

Commit 146d3f0

Browse files
committed
[lldb][test] Disable TestSharedLibStrippedSymbols on Arm
This has been flakey lately for example: https://lab.llvm.org/buildbot/#/builders/18/builds/5139
1 parent 6004f55 commit 146d3f0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
class SharedLibStrippedTestCase(TestBase):
1212
@expectedFailureAll(oslist=["windows"])
13+
# Sometimes fails with:
14+
# error: Couldn't allocate space for materialized struct: Couldn't malloc: address space is full
15+
# On 32 bit Arm Linux.
16+
@skipIf(archs=["arm"])
1317
def test_expr(self):
1418
"""Test that types work when defined in a shared library and forward-declared in the main executable"""
1519
if "clang" in self.getCompiler() and "3.4" in self.getCompilerVersion():

0 commit comments

Comments
 (0)