Title: [225321] trunk/Tools
Revision
225321
Author
[email protected]
Date
2017-11-30 00:21:25 -0800 (Thu, 30 Nov 2017)

Log Message

Silence the BitVector leak for
https://bugs.webkit.org/show_bug.cgi?id=121662

The out of line data pointer isn't stored directly, so the leaks tool cannot see it.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (225320 => 225321)


--- trunk/Tools/ChangeLog	2017-11-30 07:53:21 UTC (rev 225320)
+++ trunk/Tools/ChangeLog	2017-11-30 08:21:25 UTC (rev 225321)
@@ -1,3 +1,13 @@
+2017-11-30  Alexey Proskuryakov  <[email protected]>
+
+        Silence the BitVector leak for
+        https://bugs.webkit.org/show_bug.cgi?id=121662
+
+        The out of line data pointer isn't stored directly, so the leaks tool cannot see it.
+
+        * Scripts/webkitpy/port/leakdetector.py:
+        (LeakDetector._callstacks_to_exclude_from_leaks):
+
 2017-11-29  Aakash Jain  <[email protected]>
 
         Fix build.webkit.org broken unit-test after r225080

Modified: trunk/Tools/Scripts/webkitpy/port/leakdetector.py (225320 => 225321)


--- trunk/Tools/Scripts/webkitpy/port/leakdetector.py	2017-11-30 07:53:21 UTC (rev 225320)
+++ trunk/Tools/Scripts/webkitpy/port/leakdetector.py	2017-11-30 08:21:25 UTC (rev 225321)
@@ -54,8 +54,7 @@
 
     def _callstacks_to_exclude_from_leaks(self):
         callstacks = [
-            # List substrings here, e.g.
-            # 'TextCodecICU::registerCodecs',  # https://bugs.webkit.org/show_bug.cgi?id=118505
+            'WTF::BitVector::OutOfLineBits::create', # https://bugs.webkit.org/show_bug.cgi?id=121662
         ]
         return callstacks
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to