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 <[email protected]> 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 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
