[Lldb-commits] [lldb] 43a5c4a - [lldb][test] Skip other Global Module Cache tests on Arm/AArch64 Linux
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Wed Jan 3 03:26:46 PST 2024
Author: David Spickett
Date: 2024-01-03T11:24:58Z
New Revision: 43a5c4a10d19e7ecca4232966495aabc4e901559
URL: https://github.com/llvm/llvm-project/commit/43a5c4a10d19e7ecca4232966495aabc4e901559
DIFF: https://github.com/llvm/llvm-project/commit/43a5c4a10d19e7ecca4232966495aabc4e901559.diff
LOG: [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.
Added:
Modified:
lldb/test/API/python_api/global_module_cache/TestGlobalModuleCache.py
Removed:
################################################################################
diff --git a/lldb/test/API/python_api/global_module_cache/TestGlobalModuleCache.py b/lldb/test/API/python_api/global_module_cache/TestGlobalModuleCache.py
index 5b6e9e8a588a39..1264df61f2be47 100644
--- a/lldb/test/API/python_api/global_module_cache/TestGlobalModuleCache.py
+++ b/lldb/test/API/python_api/global_module_cache/TestGlobalModuleCache.py
@@ -52,11 +52,13 @@ def test_OneTargetOneDebugger(self):
# 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)
More information about the lldb-commits
mailing list