[Lldb-commits] [lldb] 08fea04 - [lldb] Skip TestDAP_locations.py on arm64e (#203130)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 11 10:53:25 PDT 2026
Author: Alex Langford
Date: 2026-06-11T10:53:21-07:00
New Revision: 08fea044e9a6b3eadc9348ab78d876caf68d95bb
URL: https://github.com/llvm/llvm-project/commit/08fea044e9a6b3eadc9348ab78d876caf68d95bb
DIFF: https://github.com/llvm/llvm-project/commit/08fea044e9a6b3eadc9348ab78d876caf68d95bb.diff
LOG: [lldb] Skip TestDAP_locations.py on arm64e (#203130)
See: https://github.com/llvm/llvm-project/issues/203127
Added:
Modified:
lldb/test/API/tools/lldb-dap/locations/TestDAP_locations.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-dap/locations/TestDAP_locations.py b/lldb/test/API/tools/lldb-dap/locations/TestDAP_locations.py
index ecb4303c6282e..2a079a7f70383 100644
--- a/lldb/test/API/tools/lldb-dap/locations/TestDAP_locations.py
+++ b/lldb/test/API/tools/lldb-dap/locations/TestDAP_locations.py
@@ -19,6 +19,9 @@ def verify_location(self, location_reference: str, filename: str, line: int):
self.assertEqual(response["body"]["line"], line)
@skipIfWindows
+ @skipIf(
+ bugnumber="https://github.com/llvm/llvm-project/issues/203127", archs=["arm64e"]
+ )
def test_locations(self):
"""
Tests the 'locations' request.
More information about the lldb-commits
mailing list