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

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 23 10:55:12 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(), [])
----------------
adrian-prantl wrote:

The bots will already fail at the `archs=no_match(["arm64e"]` decorator.

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


More information about the lldb-commits mailing list