Title: [197262] trunk/Tools
Revision
197262
Author
[email protected]
Date
2016-02-27 16:40:18 -0800 (Sat, 27 Feb 2016)

Log Message

Silence leaks under TextCodecICU::registerCodecs
https://bugs.webkit.org/show_bug.cgi?id=154737

Reviewed by Darin Adler.

* Scripts/webkitpy/port/leakdetector.py:
(LeakDetector._callstacks_to_exclude_from_leaks):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (197261 => 197262)


--- trunk/Tools/ChangeLog	2016-02-28 00:36:01 UTC (rev 197261)
+++ trunk/Tools/ChangeLog	2016-02-28 00:40:18 UTC (rev 197262)
@@ -1,3 +1,13 @@
+2016-02-27  Alexey Proskuryakov  <[email protected]>
+
+        Silence leaks under TextCodecICU::registerCodecs
+        https://bugs.webkit.org/show_bug.cgi?id=154737
+
+        Reviewed by Darin Adler.
+
+        * Scripts/webkitpy/port/leakdetector.py:
+        (LeakDetector._callstacks_to_exclude_from_leaks):
+
 2016-02-26  Michael Catanzaro  <[email protected]>
 
         [GTK] Fix incorrect cast

Modified: trunk/Tools/Scripts/webkitpy/port/leakdetector.py (197261 => 197262)


--- trunk/Tools/Scripts/webkitpy/port/leakdetector.py	2016-02-28 00:36:01 UTC (rev 197261)
+++ trunk/Tools/Scripts/webkitpy/port/leakdetector.py	2016-02-28 00:40:18 UTC (rev 197262)
@@ -53,7 +53,9 @@
         return []
 
     def _callstacks_to_exclude_from_leaks(self):
-        callstacks = []
+        callstacks = [
+            'TextCodecICU::registerCodecs',  # https://bugs.webkit.org/show_bug.cgi?id=118505
+        ]
         if self._port.operating_system == 'mac' and self._port.is_mavericks():
             callstacks += [
                 'AVAssetResourceLoader _poseAuthenticationChallengeWithKey:data:requestDictionary:fallbackHandler:',  # <rdar://problem/19699887> leak in AVFoundation
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to