Title: [201069] trunk/LayoutTests
Revision
201069
Author
[email protected]
Date
2016-05-17 19:53:45 -0700 (Tue, 17 May 2016)

Log Message

LayoutTest inspector/debugger/tail-recursion.html failing on WK2 debug
https://bugs.webkit.org/show_bug.cgi?id=157801

Rubber-stamped by Joseph Pecoraro.

* inspector/debugger/tail-recursion.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (201068 => 201069)


--- trunk/LayoutTests/ChangeLog	2016-05-18 02:26:12 UTC (rev 201068)
+++ trunk/LayoutTests/ChangeLog	2016-05-18 02:53:45 UTC (rev 201069)
@@ -1,3 +1,12 @@
+2016-05-17  Saam barati  <[email protected]>
+
+        LayoutTest inspector/debugger/tail-recursion.html failing on WK2 debug
+        https://bugs.webkit.org/show_bug.cgi?id=157801
+
+        Rubber-stamped by Joseph Pecoraro.
+
+        * inspector/debugger/tail-recursion.html:
+
 2016-05-17  Nan Wang  <[email protected]>
 
         AX: Adding children incorrectly when there are nested inline continuations

Modified: trunk/LayoutTests/inspector/debugger/tail-recursion.html (201068 => 201069)


--- trunk/LayoutTests/inspector/debugger/tail-recursion.html	2016-05-18 02:26:12 UTC (rev 201068)
+++ trunk/LayoutTests/inspector/debugger/tail-recursion.html	2016-05-18 02:53:45 UTC (rev 201069)
@@ -72,8 +72,10 @@
     });
 
     WebInspector.debuggerManager.addEventListener(WebInspector.DebuggerManager.Event.Resumed, function(event) {
-        InspectorTest.log("Tests done");
-        InspectorTest.completeTest();
+        if (numBreakpointHits === 2) {
+            InspectorTest.log("Tests done");
+            InspectorTest.completeTest();
+        }
     });
 
     WebInspector.debuggerManager.addEventListener(WebInspector.DebuggerManager.Event.ScriptAdded, function(event) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to