[Lldb-commits] [lldb] r205496 - Print the new eStopReasonExec in stop_reason_to_str.
Jim Ingham
jingham at apple.com
Wed Apr 2 18:25:28 PDT 2014
Author: jingham
Date: Wed Apr 2 20:25:28 2014
New Revision: 205496
URL: http://llvm.org/viewvc/llvm-project?rev=205496&view=rev
Log:
Print the new eStopReasonExec in stop_reason_to_str.
Modified:
lldb/trunk/test/lldbutil.py
Modified: lldb/trunk/test/lldbutil.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbutil.py?rev=205496&r1=205495&r2=205496&view=diff
==============================================================================
--- lldb/trunk/test/lldbutil.py (original)
+++ lldb/trunk/test/lldbutil.py Wed Apr 2 20:25:28 2014
@@ -175,6 +175,8 @@ def stop_reason_to_str(enum):
return "breakpoint"
elif enum == lldb.eStopReasonWatchpoint:
return "watchpoint"
+ elif enum == lldb.eStopReasonExec:
+ return "exec"
elif enum == lldb.eStopReasonSignal:
return "signal"
elif enum == lldb.eStopReasonException:
More information about the lldb-commits
mailing list