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