Title: [183036] trunk/Tools
Revision
183036
Author
achristen...@apple.com
Date
2015-04-20 16:38:42 -0700 (Mon, 20 Apr 2015)

Log Message

Remove unnecessary logs when resetting tests.

* WebKitTestRunner/mac/TestControllerMac.mm:
(WTR::TestController::platformResetPreferencesToConsistentValues):
In r183020 I added some logs when compiling or removing content extensions fails.
We often try to remove a content extension that does not exist, and that is not a problem.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (183035 => 183036)


--- trunk/Tools/ChangeLog	2015-04-20 23:26:44 UTC (rev 183035)
+++ trunk/Tools/ChangeLog	2015-04-20 23:38:42 UTC (rev 183036)
@@ -1,3 +1,12 @@
+2015-04-20  Alex Christensen  <achristen...@webkit.org>
+
+        Remove unnecessary logs when resetting tests.
+
+        * WebKitTestRunner/mac/TestControllerMac.mm:
+        (WTR::TestController::platformResetPreferencesToConsistentValues):
+        In r183020 I added some logs when compiling or removing content extensions fails.
+        We often try to remove a content extension that does not exist, and that is not a problem.
+
 2015-04-17  Matthew Hanson  <matthew_han...@apple.com>
 
         prepare-ChangeLog should ignore the preceeding function when processing the removal of a function.

Modified: trunk/Tools/WebKitTestRunner/mac/TestControllerMac.mm (183035 => 183036)


--- trunk/Tools/WebKitTestRunner/mac/TestControllerMac.mm	2015-04-20 23:26:44 UTC (rev 183035)
+++ trunk/Tools/WebKitTestRunner/mac/TestControllerMac.mm	2015-04-20 23:38:42 UTC (rev 183036)
@@ -88,8 +88,6 @@
     __block bool doneRemoving = false;
     [[_WKUserContentExtensionStore defaultStore] removeContentExtensionForIdentifier:@"TestContentExtensions" completionHandler:^(NSError *error)
     {
-        if (error)
-            NSLog(@"%@", [error helpAnchor]);
         doneRemoving = true;
     }];
     platformRunUntil(doneRemoving, 0);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to