[Lldb-commits] [lldb] r180966 - <rdar://problem/13732521>

Enrico Granata egranata at apple.com
Thu May 2 15:40:23 PDT 2013


Author: enrico
Date: Thu May  2 17:40:22 2013
New Revision: 180966

URL: http://llvm.org/viewvc/llvm-project?rev=180966&view=rev
Log:
<rdar://problem/13732521>

Updated the logic for the Sketch test case

Modified:
    lldb/trunk/tools/lldb-perf/darwin/sketch/sketch.cpp

Modified: lldb/trunk/tools/lldb-perf/darwin/sketch/sketch.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-perf/darwin/sketch/sketch.cpp?rev=180966&r1=180965&r2=180966&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-perf/darwin/sketch/sketch.cpp (original)
+++ lldb/trunk/tools/lldb-perf/darwin/sketch/sketch.cpp Thu May  2 17:40:22 2013
@@ -279,15 +279,15 @@ public:
                 m_run_expr_measurement(m_thread.GetFrameAtIndex(0),"[selectionIndexes description]");
                 m_run_expr_measurement(m_thread.GetFrameAtIndex(0),"(BOOL)NSIntersectsRect(rect, graphicDrawingBounds)");
             }
+            next_action.CallNext();
             break;
         case 9:
-            {
-                if (++launch < 10)
-                    next_action.Relaunch(GetLaunchInfo());
-                else
-                    next_action.Kill();
-                break;
-            }
+            if (++launch < 10)
+                next_action.Relaunch(GetLaunchInfo());
+            else
+                next_action.Kill();
+            break;
+        
                 
         default:
             {





More information about the lldb-commits mailing list