[Lldb-commits] [PATCH] D26676: Patch for lldb bug 26322 “core load hangs”
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 23 05:24:54 PST 2016
labath added a comment.
I just tried it, and these tests run fine without the executable file. Just remove those, and I think we're ready.
================
Comment at: packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py:38
+ def do_test(self, filename, pid):
+ target = self.dbg.CreateTarget(filename + ".out")
+ process = target.LoadCore(filename + ".core")
----------------
You don't need the executable file for this test. Just create an empty target `self.dbg.CreateTarget("")` and use that.
https://reviews.llvm.org/D26676
More information about the lldb-commits
mailing list