[Lldb-commits] [lldb] Replace ArchSpec::PiecewiseCompare() with Triple::operator==() (PR #82804)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 23 10:16:36 PST 2024


================
@@ -0,0 +1,25 @@
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+
+
+class TestArm64eAttach(TestBase):
+    NO_DEBUG_INFO_TESTCASE = True
+
+    # On Darwin systems, arch arm64e means ARMv8.3 with ptrauth ABI used.
+    @skipIf(archs=no_match(["arm64e"]))
+    def test(self):
+        self.build()
+        popen = self.spawnSubprocess(self.getBuildArtifact(), [])
----------------
JDevlieghere wrote:

To run arm64e code you need to set a `-arm64e_preview_abi` boot arg. I'd be surprised if the bots have that set. You'll probably want to skip this test when this fails to launch. 

https://github.com/llvm/llvm-project/pull/82804


More information about the lldb-commits mailing list