[Lldb-commits] [lldb] [lldb][MachO] MachO corefile support for riscv32 binaries (PR #137092)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 23 20:20: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):
----------------
JDevlieghere wrote:
It's the `mach` headers you're using I think.
https://github.com/llvm/llvm-project/pull/137092
More information about the lldb-commits
mailing list