[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

eric at webkit.org eric at webkit.org
Wed Dec 22 12:36:28 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit cde85f66855725fc7b40bfbf058537ab591bcffc
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 25 23:37:26 2010 +0000

    2010-08-25  Eric Seidel  <eric at webkit.org>
    
            Reviewed by Simon Fraser.
    
            REGRESSION: media/video-loop.html is timing out on the commit-queue Leopard Bot
            https://bugs.webkit.org/show_bug.cgi?id=38912
    
            I know of nothing else to do but skip all media tests for the cq.
    
            * Scripts/webkitpy/tool/steps/runtests.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66053 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 63e2743..58cf5ba 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-25  Eric Seidel  <eric at webkit.org>
+
+        Reviewed by Simon Fraser.
+
+        REGRESSION: media/video-loop.html is timing out on the commit-queue Leopard Bot
+        https://bugs.webkit.org/show_bug.cgi?id=38912
+
+        I know of nothing else to do but skip all media tests for the cq.
+
+        * Scripts/webkitpy/tool/steps/runtests.py:
+
 2010-08-25  Dirk Pranke  <dpranke at chromium.org>
 
         Reviewed by Ojan Vafai.
diff --git a/WebKitTools/Scripts/webkitpy/tool/steps/runtests.py b/WebKitTools/Scripts/webkitpy/tool/steps/runtests.py
index 0f57439..aff1fd9 100644
--- a/WebKitTools/Scripts/webkitpy/tool/steps/runtests.py
+++ b/WebKitTools/Scripts/webkitpy/tool/steps/runtests.py
@@ -62,7 +62,15 @@ class RunTests(AbstractStep):
             # when running the commit-queue on a mac leopard machine since compositing
             # does not work reliably on Leopard due to various graphics driver/system bugs.
             if self.port().name() == "Mac" and self.port().is_leopard():
-                args.extend(["--ignore-tests", "compositing"])
+                tests_to_ignore = []
+                tests_to_ignore.append("compositing")
+
+                # media tests are also broken on mac leopard due to
+                # a separate CoreVideo bug which causes random crashes/hangs
+                # https://bugs.webkit.org/show_bug.cgi?id=38912
+                tests_to_ignore.append("media")
+
+                args.extend(["--ignore-tests", ",".join(tests_to_ignore)])
 
         if self._options.quiet:
             args.append("--quiet")

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list