* Scripts/old-run-webkit-tests:
(countAndPrintLeaks):
* Scripts/webkitpy/layout_tests/port/leakdetector.py:
(LeakDetector._callstacks_to_exclude_from_leaks):
Added ScanFromString to the call stacks to exclude on all OS versions.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@100799
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-11-18 Adam Roben <aroben@apple.com>
+
+ Ignore an ANGLE leak that is not WebKit's fault
+
+ * Scripts/old-run-webkit-tests:
+ (countAndPrintLeaks):
+ * Scripts/webkitpy/layout_tests/port/leakdetector.py:
+ (LeakDetector._callstacks_to_exclude_from_leaks):
+ Added ScanFromString to the call stacks to exclude on all OS versions.
+
2011-11-18 Adam Roben <aroben@apple.com>
Ignore another Lion-specific leak that is not WebKit's fault
);
my @callStacksToExclude = (
- "Flash_EnforceLocalSecurity" # leaks in Flash plug-in code, rdar://problem/4449747
+ "Flash_EnforceLocalSecurity", # leaks in Flash plug-in code, rdar://problem/4449747
+ "ScanFromString", # <http://code.google.com/p/angleproject/issues/detail?id=249> leak in ANGLE
);
if (isLeopard()) {
def _callstacks_to_exclude_from_leaks(self):
callstacks = [
"Flash_EnforceLocalSecurity", # leaks in Flash plug-in code, rdar://problem/4449747
+ "ScanFromString", # <http://code.google.com/p/angleproject/issues/detail?id=249> leak in ANGLE
]
if self._port.is_leopard():
callstacks += [