[Lldb-commits] [PATCH] D12977: LLDB MI addition for getting process stopped at first instruction right after launch via -exec-run
Kirill Lapshin via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 30 10:50:34 PDT 2015
KLapshin added inline comments.
================
Comment at: test/tools/lldb-mi/control/TestMiExec.py:16
@@ +15,3 @@
+ @skipIfFreeBSD # Failure presumably due to StopAtEntry most likely not implemented
+ @expectedFailureAll("llvm.org/pr25000", oslist=["linux"])
+ def test_lldbmi_exec_run(self):
----------------
It looks like lldb-mi didn't received SIGSTOP evbent on Linux platform because event was not rebroadcasted because "Process::WaitForProcessToStop (timeout = (nil))
Process::WaitForProcessToStop returning without waiting for events; process private and public states are already 'stopped'.
" - see full log (process, event channel) attached to llvm.org/pr25000 bug.
Repository:
rL LLVM
http://reviews.llvm.org/D12977
More information about the lldb-commits
mailing list