Title: [226037] trunk/Tools
Revision
226037
Author
[email protected]
Date
2017-12-18 08:40:45 -0800 (Mon, 18 Dec 2017)

Log Message

BitVector::OutOfLineBits is always reported as a leak
https://bugs.webkit.org/show_bug.cgi?id=121662

Adding one more signature to ignore list.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (226036 => 226037)


--- trunk/Tools/ChangeLog	2017-12-18 15:50:35 UTC (rev 226036)
+++ trunk/Tools/ChangeLog	2017-12-18 16:40:45 UTC (rev 226037)
@@ -1,3 +1,13 @@
+2017-12-18  Alexey Proskuryakov  <[email protected]>
+
+        BitVector::OutOfLineBits is always reported as a leak
+        https://bugs.webkit.org/show_bug.cgi?id=121662
+
+        Adding one more signature to ignore list.
+
+        * Scripts/webkitpy/port/leakdetector.py:
+        (LeakDetector._callstacks_to_exclude_from_leaks):
+
 2017-12-18  Carlos Garcia Campos  <[email protected]>
 
         [GTK][WPE] Add WebKitWebView::web-process-terminated signal and deprecate web-process-crashed

Modified: trunk/Tools/Scripts/webkitpy/port/leakdetector.py (226036 => 226037)


--- trunk/Tools/Scripts/webkitpy/port/leakdetector.py	2017-12-18 15:50:35 UTC (rev 226036)
+++ trunk/Tools/Scripts/webkitpy/port/leakdetector.py	2017-12-18 16:40:45 UTC (rev 226037)
@@ -55,6 +55,7 @@
     def _callstacks_to_exclude_from_leaks(self):
         callstacks = [
             'WTF::BitVector::OutOfLineBits::create', # https://bugs.webkit.org/show_bug.cgi?id=121662
+            'WTF::BitVector::resizeOutOfLine', # https://bugs.webkit.org/show_bug.cgi?id=121662
             'WebCore::createPrivateStorageSession', # <rdar://problem/35189565>
             'CIDeviceManagerStartMonitoring', # <rdar://problem/35711052>
             'NSSpellChecker init', # <rdar://problem/35434615>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to