File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change
1
+ 2017-11-28 Alexey Proskuryakov <ap@apple.com>
2
+
3
+ Stop silencing leaks in TextCodecICU::registerCodecs, as the problem was fixed a while ago.
4
+ https://bugs.webkit.org/show_bug.cgi?id=118505
5
+
6
+ Reviewed by Joseph Pecoraro.
7
+
8
+ * Scripts/valgrind/suppressions.txt:
9
+ * Scripts/webkitpy/port/leakdetector.py:
10
+ (LeakDetector._callstacks_to_exclude_from_leaks):
11
+
1
12
2017-11-28 Ms2ger <Ms2ger@igalia.com>
2
13
3
14
Stop modifying self.expectations in TestExpectationLine.expected_behavior.
Original file line number Diff line number Diff line change 594
594
}
595
595
596
596
{
597
- # TextCodecICU::registerCodecs is leaking https://bugs.webkit.org/show_bug.cgi?id=118505
598
- WebCore::TextCodec::registerCodecs()
599
597
Memcheck:Leak
600
598
fun:malloc
601
599
fun:_ZN3WTF10fastMallocEm
Original file line number Diff line number Diff line change @@ -54,12 +54,9 @@ def _types_to_exlude_from_leaks(self):
54
54
55
55
def _callstacks_to_exclude_from_leaks (self ):
56
56
callstacks = [
57
- 'TextCodecICU::registerCodecs' , # https://bugs.webkit.org/show_bug.cgi?id=118505
57
+ # List substrings here, e.g.
58
+ # 'TextCodecICU::registerCodecs', # https://bugs.webkit.org/show_bug.cgi?id=118505
58
59
]
59
- if self ._port .operating_system == 'mac' and self ._port .is_mavericks ():
60
- callstacks += [
61
- 'AVAssetResourceLoader _poseAuthenticationChallengeWithKey:data:requestDictionary:fallbackHandler:' , # <rdar://problem/19699887> leak in AVFoundation
62
- ]
63
60
return callstacks
64
61
65
62
def _leaks_args (self , pid ):
You can’t perform that action at this time.
0 commit comments