Skip to content

Commit 43a5c4a

Browse files
committed
[lldb][test] Skip other Global Module Cache tests on Arm/AArch64 Linux
These are expected to fail but sometimes crash during the test leaving them as unresolved. Same failure message and likely same cause as the other test in this file.
1 parent 39be138 commit 43a5c4a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lldb/test/API/python_api/global_module_cache/TestGlobalModuleCache.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,13 @@ def test_OneTargetOneDebugger(self):
5252
# This test tests for the desired behavior as an expected fail.
5353
@skipIfWindows
5454
@expectedFailureAll
55+
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
5556
def test_TwoTargetsOneDebugger(self):
5657
self.do_test(False, True)
5758

5859
@skipIfWindows
5960
@expectedFailureAll
61+
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
6062
def test_OneTargetTwoDebuggers(self):
6163
self.do_test(True, False)
6264

0 commit comments

Comments
 (0)