Title: [96709] trunk/LayoutTests
Revision
96709
Author
[email protected]
Date
2011-10-05 09:09:52 -0700 (Wed, 05 Oct 2011)

Log Message

Web Inspector: debugger-activation-crash2.html are flaky.
https://bugs.webkit.org/show_bug.cgi?id=69428

Reviewed by Yury Semikhatsky.

* http/tests/inspector/debugger-test.js:
(initialize_DebuggerTest):
* inspector/debugger/debugger-activation-crash2-expected.txt:
* inspector/debugger/debugger-activation-crash2.html:
* platform/chromium/inspector/debugger/debugger-activation-crash2-expected.txt: Removed.

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (96708 => 96709)


--- trunk/LayoutTests/ChangeLog	2011-10-05 15:51:38 UTC (rev 96708)
+++ trunk/LayoutTests/ChangeLog	2011-10-05 16:09:52 UTC (rev 96709)
@@ -1,3 +1,16 @@
+2011-10-05  Ilya Tikhonovsky  <[email protected]>
+
+        Web Inspector: debugger-activation-crash2.html are flaky.
+        https://bugs.webkit.org/show_bug.cgi?id=69428
+
+        Reviewed by Yury Semikhatsky.
+
+        * http/tests/inspector/debugger-test.js:
+        (initialize_DebuggerTest):
+        * inspector/debugger/debugger-activation-crash2-expected.txt:
+        * inspector/debugger/debugger-activation-crash2.html:
+        * platform/chromium/inspector/debugger/debugger-activation-crash2-expected.txt: Removed.
+
 2011-10-05  Abhishek Arya  <[email protected]>
 
         Crash in SVGTRefElement::updateReferencedText.

Modified: trunk/LayoutTests/http/tests/inspector/debugger-test.js (96708 => 96709)


--- trunk/LayoutTests/http/tests/inspector/debugger-test.js	2011-10-05 15:51:38 UTC (rev 96708)
+++ trunk/LayoutTests/http/tests/inspector/debugger-test.js	2011-10-05 16:09:52 UTC (rev 96709)
@@ -102,7 +102,7 @@
     InspectorTest.waitUntilResumed(callback);
 };
 
-InspectorTest.captureStackTrace = function(callFrames)
+InspectorTest.captureStackTrace = function(callFrames, dropLineNumbers)
 {
     InspectorTest.addResult("Call stack:");
     for (var i = 0; i < callFrames.length; i++) {
@@ -117,7 +117,7 @@
             url = "" script)";
             lineNumber = "(line number)";
         }
-        var s = "    " + i + ") " + frame.functionName + " (" + url + ":" + lineNumber + ")";
+        var s = "    " + i + ") " + frame.functionName + " (" + url + (dropLineNumbers ? "" : ":" + lineNumber) + ")";
         InspectorTest.addResult(s);
     }
 };

Modified: trunk/LayoutTests/inspector/debugger/debugger-activation-crash2-expected.txt (96708 => 96709)


--- trunk/LayoutTests/inspector/debugger/debugger-activation-crash2-expected.txt	2011-10-05 15:51:38 UTC (rev 96708)
+++ trunk/LayoutTests/inspector/debugger/debugger-activation-crash2-expected.txt	2011-10-05 16:09:52 UTC (rev 96709)
@@ -5,8 +5,8 @@
 Set timer for test function.
 Script execution paused.
 Call stack:
-    0)  (debugger-activation-crash2.html:9)
-    1) testFunction (debugger-activation-crash2.html:20)
+    0)  (debugger-activation-crash2.html)
+    1) testFunction (debugger-activation-crash2.html)
 Script execution resumed.
 Debugger was disabled.
 

Modified: trunk/LayoutTests/inspector/debugger/debugger-activation-crash2.html (96708 => 96709)


--- trunk/LayoutTests/inspector/debugger/debugger-activation-crash2.html	2011-10-05 15:51:38 UTC (rev 96708)
+++ trunk/LayoutTests/inspector/debugger/debugger-activation-crash2.html	2011-10-05 16:09:52 UTC (rev 96709)
@@ -40,7 +40,7 @@
 
     function step3(callFrames)
     {
-        InspectorTest.captureStackTrace(callFrames);
+        InspectorTest.captureStackTrace(callFrames, true);
         InspectorTest.completeDebuggerTest();
     }
 }

Deleted: trunk/LayoutTests/platform/chromium/inspector/debugger/debugger-activation-crash2-expected.txt (96708 => 96709)


--- trunk/LayoutTests/platform/chromium/inspector/debugger/debugger-activation-crash2-expected.txt	2011-10-05 15:51:38 UTC (rev 96708)
+++ trunk/LayoutTests/platform/chromium/inspector/debugger/debugger-activation-crash2-expected.txt	2011-10-05 16:09:52 UTC (rev 96709)
@@ -1,12 +0,0 @@
-Tests for a crash when paused at a breakpoint caused by inaccurate Activation records. Bug 57120
-
-Debugger was enabled.
-Script source was shown.
-Set timer for test function.
-Script execution paused.
-Call stack:
-    0)  (debugger-activation-crash2.html:9)
-    1) testFunction (debugger-activation-crash2.html:20)
-Script execution resumed.
-Debugger was disabled.
-
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to