[Lldb-commits] [lldb] [lldb] Add utility to create Mach-O corefile from YAML desc (PR #153911)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 1 06:03:04 PDT 2025
================
@@ -13,18 +13,17 @@
class TestRV32MachOCorefile(TestBase):
NO_DEBUG_INFO_TESTCASE = True
- @skipUnlessDarwin
+ @no_debug_info_test
def test_riscv32_gpr_corefile_registers(self):
- self.build()
- create_corefile = self.getBuildArtifact("create-empty-riscv-corefile")
corefile = self.getBuildArtifact("core")
- call(create_corefile + " " + corefile, shell=True)
+ self.yaml2macho_core("riscv32-registers.yaml", corefile)
+ # call(create_corefile + " " + corefile, shell=True)
----------------
DavidSpickett wrote:
Remove commented line.
https://github.com/llvm/llvm-project/pull/153911
More information about the lldb-commits
mailing list