[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.
This commit is contained in:
David Spickett
2024-01-03 11:24:58 +00:00
parent 39be138cb7
commit 43a5c4a10d

View File

@@ -52,11 +52,13 @@ class GlobalModuleCacheTestCase(TestBase):
# This test tests for the desired behavior as an expected fail.
@skipIfWindows
@expectedFailureAll
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_TwoTargetsOneDebugger(self):
self.do_test(False, True)
@skipIfWindows
@expectedFailureAll
@skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_OneTargetTwoDebuggers(self):
self.do_test(True, False)