Skip to content

Commit b9a30b6

Browse files
committed
[lldb] Update test_software_breakpoint_set_and_remove_work for AS
On Apple Silicon the platform arch is arm64 rather than AArch64.
1 parent ea48640 commit b9a30b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/tools/lldb-server/TestLldbGdbServer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ def breakpoint_set_and_remove_work(self, want_hardware):
812812
target_arch = self.getArchitecture()
813813

814814
# Set the breakpoint.
815-
if (target_arch == "arm") or (target_arch == "aarch64"):
815+
if target_arch in ["arm", "arm64", "aarch64"]:
816816
# TODO: Handle case when setting breakpoint in thumb code
817817
BREAKPOINT_KIND = 4
818818
else:

0 commit comments

Comments
 (0)