[Lldb-commits] [lldb] [lldb][MachO] MachO corefile support for riscv32 binaries (PR #137092)
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 23 20:19:12 PDT 2025
================
@@ -0,0 +1,81 @@
+"""Test that all of the GPR registers are read correctly from a riscv32 corefile."""
+
+import os
+import re
+import subprocess
+
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+
+
+class TestRV32MachOCorefile(TestBase):
+ NO_DEBUG_INFO_TESTCASE = True
+
+ def test_riscv32_gpr_corefile_registers(self):
----------------
jasonmolenda wrote:
I didn't think there was anything very Darwin specific here, figured ObjectFileMachO was built on Linux etc but PR linux testing says I'm wrong.
https://github.com/llvm/llvm-project/pull/137092
More information about the lldb-commits
mailing list