Title: [100799] trunk/Tools
Revision
100799
Author
aro...@apple.com
Date
2011-11-18 11:15:42 -0800 (Fri, 18 Nov 2011)

Log Message

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.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (100798 => 100799)


--- trunk/Tools/ChangeLog	2011-11-18 19:11:44 UTC (rev 100798)
+++ trunk/Tools/ChangeLog	2011-11-18 19:15:42 UTC (rev 100799)
@@ -1,5 +1,15 @@
 2011-11-18  Adam Roben  <aro...@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  <aro...@apple.com>
+
         Ignore another Lion-specific leak that is not WebKit's fault
 
         * Scripts/old-run-webkit-tests:

Modified: trunk/Tools/Scripts/old-run-webkit-tests (100798 => 100799)


--- trunk/Tools/Scripts/old-run-webkit-tests	2011-11-18 19:11:44 UTC (rev 100798)
+++ trunk/Tools/Scripts/old-run-webkit-tests	2011-11-18 19:15:42 UTC (rev 100799)
@@ -1251,7 +1251,8 @@
     );
 
     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()) {

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/leakdetector.py (100798 => 100799)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/leakdetector.py	2011-11-18 19:11:44 UTC (rev 100798)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/leakdetector.py	2011-11-18 19:15:42 UTC (rev 100799)
@@ -55,6 +55,7 @@
     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 += [
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to