[Lldb-commits] [lldb] [lldb] Fix build logic in TestPtrAuthAuthTraps.py (PR #195949)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Tue May 5 14:47:40 PDT 2026
https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/195949
None
>From 1f6c32bb1766f489cbae249a1fb7c1aea05814e1 Mon Sep 17 00:00:00 2001
From: Alex Langford <alangford at apple.com>
Date: Tue, 5 May 2026 14:45:38 -0700
Subject: [PATCH] [lldb] Fix build logic in TestPtrAuthAuthTraps.py
---
.../expression/ptrauth-auth-traps/TestPtrAuthAuthTraps.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lldb/test/API/commands/expression/ptrauth-auth-traps/TestPtrAuthAuthTraps.py b/lldb/test/API/commands/expression/ptrauth-auth-traps/TestPtrAuthAuthTraps.py
index 411c352b41ec4..89a92e2b3fc70 100644
--- a/lldb/test/API/commands/expression/ptrauth-auth-traps/TestPtrAuthAuthTraps.py
+++ b/lldb/test/API/commands/expression/ptrauth-auth-traps/TestPtrAuthAuthTraps.py
@@ -17,7 +17,7 @@ class TestPtrAuthAuthTraps(TestBase):
def build_arm64e(self):
self.build(
- dictionary={"TRIPLE": configuration.triple.replace("arm64", "arm64e")}
+ dictionary={"TRIPLE": configuration.triple.replace("arm64-", "arm64e-")}
)
@skipUnlessArm64eSupported
More information about the lldb-commits
mailing list