[Lldb-commits] [PATCH] spurious output to command line when launching a process on linux

Shawn Best sbest at blueshiftinc.com
Wed Oct 8 20:31:08 PDT 2014


I have done some digging into the failing test and isolated it to a simple C++ program.  Basically the test is using the c++ api to lldb:

1. Create an SBDebugger
2. Load a simple inferior process, create an SBListener, and launch inferior with listener
3. The test program expects to see the listener events Running Stopped

Prior to my this checkin, the events go:
Running
Stopped
Running
Stopped

After the checkin, the events go:
Launching
Running
Stopped
Running
Stopped

I'm still working on figuring out why the 'Launching' event is now showing up in the listener.

http://reviews.llvm.org/D5632






More information about the lldb-commits mailing list