Title: [145068] trunk/Source/WebKit/chromium
Revision
145068
Author
commit-qu...@webkit.org
Date
2013-03-07 06:17:25 -0800 (Thu, 07 Mar 2013)

Log Message

Web Inspector: Add more diagnostics output to testRendererProcessNativeMemorySize
https://bugs.webkit.org/show_bug.cgi?id=111599

Patch by Alexei Filippov <a...@chromium.org> on 2013-03-07
Reviewed by Yury Semikhatsky.

Add the process size to the test output.

* src/js/Tests.js:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (145067 => 145068)


--- trunk/Source/WebKit/chromium/ChangeLog	2013-03-07 14:00:57 UTC (rev 145067)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-03-07 14:17:25 UTC (rev 145068)
@@ -1,3 +1,14 @@
+2013-03-07  Alexei Filippov  <a...@chromium.org>
+
+        Web Inspector: Add more diagnostics output to testRendererProcessNativeMemorySize
+        https://bugs.webkit.org/show_bug.cgi?id=111599
+
+        Reviewed by Yury Semikhatsky.
+
+        Add the process size to the test output.
+
+        * src/js/Tests.js:
+
 2013-03-07  Jochen Eisinger  <joc...@chromium.org>
 
         [chromium] expose UserGestureToken via WebKit API so PPAPI plugins can correctly consume it

Modified: trunk/Source/WebKit/chromium/src/js/Tests.js (145067 => 145068)


--- trunk/Source/WebKit/chromium/src/js/Tests.js	2013-03-07 14:00:57 UTC (rev 145067)
+++ trunk/Source/WebKit/chromium/src/js/Tests.js	2013-03-07 14:17:25 UTC (rev 145068)
@@ -327,7 +327,7 @@
     function step1(error, memoryBlock)
     {
         test.assertTrue(!error, "An error has occurred: " + error);
-        test.assertTrue(memoryBlock.size > 1 * MB && memoryBlock.size < 1500 * MB, "Unfeasible process size.");
+        test.assertTrue(memoryBlock.size > 1 * MB && memoryBlock.size < 1500 * MB, "Unfeasible process size: " + memoryBlock.size + " bytes.");
 
         initialSize = memoryBlock.size;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to