diff options
| author | David Spickett <david.spickett@linaro.org> | 2024-01-03 11:24:58 +0000 |
|---|---|---|
| committer | David Spickett <david.spickett@linaro.org> | 2024-01-03 11:24:58 +0000 |
| commit | 43a5c4a10d19e7ecca4232966495aabc4e901559 (patch) | |
| tree | f4029de3aa3db57c404b8ce338c153ae9cf4014a /lldb/test/API/python_api | |
| parent | 39be138cb771f36a13ccbf96b55ae025ba821841 (diff) | |
| download | llvm-43a5c4a10d19e7ecca4232966495aabc4e901559.zip llvm-43a5c4a10d19e7ecca4232966495aabc4e901559.tar.gz llvm-43a5c4a10d19e7ecca4232966495aabc4e901559.tar.bz2 | |
[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.
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/global_module_cache/TestGlobalModuleCache.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 5b6e9e8..1264df6 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 @@ 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) |
