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:


_______________________________________________
lldb-commits mailing list
lldb-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to