Changeset 225321 in webkit


Ignore:
Timestamp:
Nov 30, 2017 12:21:25 AM (6 years ago)
Author:
ap@apple.com
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r225319 r225321  
     12017-11-30  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Silence the BitVector leak for
     4        https://bugs.webkit.org/show_bug.cgi?id=121662
     5
     6        The out of line data pointer isn't stored directly, so the leaks tool cannot see it.
     7
     8        * Scripts/webkitpy/port/leakdetector.py:
     9        (LeakDetector._callstacks_to_exclude_from_leaks):
     10
    1112017-11-29  Aakash Jain  <aakash_jain@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/port/leakdetector.py

    r225240 r225321  
    5555    def _callstacks_to_exclude_from_leaks(self):
    5656        callstacks = [
    57             # List substrings here, e.g.
    58             # 'TextCodecICU::registerCodecs',  # https://bugs.webkit.org/show_bug.cgi?id=118505
     57            'WTF::BitVector::OutOfLineBits::create', # https://bugs.webkit.org/show_bug.cgi?id=121662
    5958        ]
    6059        return callstacks
Note: See TracChangeset for help on using the changeset viewer.