Remove a fprintf from LayoutTestController.
authormrowe@apple.com <mrowe@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 11 Apr 2012 23:08:13 +0000 (23:08 +0000)
committermrowe@apple.com <mrowe@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 11 Apr 2012 23:08:13 +0000 (23:08 +0000)
This fprintf is causing 100+MB of data to be written to stderr during a single run of the tests.
It was added for no apparent reason by Ryosuke in r113651.

* DumpRenderTree/LayoutTestController.cpp:
(LayoutTestController::redirectionDestinationForURL):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@113920 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Tools/ChangeLog
Tools/DumpRenderTree/LayoutTestController.cpp

index ea24549..b22294f 100644 (file)
@@ -1,3 +1,13 @@
+2012-04-11  Mark Rowe  <mrowe@apple.com>
+
+        Remove a fprintf from LayoutTestController.
+
+        This fprintf is causing 100+MB of data to be written to stderr during a single run of the tests.
+        It was added for no apparent reason by Ryosuke in r113651.
+
+        * DumpRenderTree/LayoutTestController.cpp:
+        (LayoutTestController::redirectionDestinationForURL):
+
 2012-04-11  Nico Weber  <thakis@chromium.org>
 
         [mac] Suppress deprecation warning for GlobalToLocal in the carbon parts of the test plugin.
index 579e22e..e51d0ee 100644 (file)
@@ -2552,7 +2552,6 @@ void LayoutTestController::addURLToRedirect(std::string origin, std::string dest
 
 const std::string& LayoutTestController::redirectionDestinationForURL(std::string origin)
 {
-    fprintf(stderr, "[%s]\n", origin.c_str());
     return m_URLsToRedirect[origin];
 }