[Lldb-commits] [PATCH] D12977: LLDB MI addition for getting process stopped at first instruction right after launch via -exec-run

Ilia K via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 30 22:02:01 PDT 2015


ki.stfu accepted this revision.
ki.stfu added a comment.

lgtm


================
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):
----------------
KLapshin wrote:
> 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.
just use
```
@expectedFailureLinux # llvm.org/pr25000: lldb-mi does not receive broadcasted notification from Core/Process about process stopped ...
```


Repository:
  rL LLVM

http://reviews.llvm.org/D12977





More information about the lldb-commits mailing list