Title: [100158] trunk
Revision
100158
Author
[email protected]
Date
2011-11-14 09:44:33 -0800 (Mon, 14 Nov 2011)

Log Message

[Chromium] Skip media layout tests on chromium-gpu-cg-mac-leopard platform
https://bugs.webkit.org/show_bug.cgi?id=72147

Reviewed by Adam Barth.

Tools:

* Scripts/webkitpy/layout_tests/port/chromium_gpu.py:

LayoutTests:

* platform/chromium/test_expectations.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (100157 => 100158)


--- trunk/LayoutTests/ChangeLog	2011-11-14 17:31:31 UTC (rev 100157)
+++ trunk/LayoutTests/ChangeLog	2011-11-14 17:44:33 UTC (rev 100158)
@@ -1,3 +1,12 @@
+2011-11-14  Andrew Scherkus  <[email protected]>
+
+        [Chromium] Skip media layout tests on chromium-gpu-cg-mac-leopard platform
+        https://bugs.webkit.org/show_bug.cgi?id=72147
+
+        Reviewed by Adam Barth.
+
+        * platform/chromium/test_expectations.txt:
+
 2011-11-14  Florin Malita  <[email protected]>
 
         Multiple foreign objects not rendered

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (100157 => 100158)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-11-14 17:31:31 UTC (rev 100157)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2011-11-14 17:44:33 UTC (rev 100158)
@@ -265,7 +265,6 @@
 WONTFIX SKIP GPU GPU-CG LEOPARD : compositing = PASS TIMEOUT FAIL
 WONTFIX SKIP GPU GPU-CG LEOPARD : platform/chromium/compositing = PASS TIMEOUT FAIL
 WONTFIX SKIP GPU GPU-CG LEOPARD : animations/3d = PASS TIMEOUT FAIL
-WONTFIX SKIP GPU GPU-CG LEOPARD : media = PASS TIMEOUT FAIL
 
 WONTFIX MAC WIN : platform/chromium-linux = FAIL
 WONTFIX SKIP LINUX MAC : platform/win = FAIL CRASH PASS

Modified: trunk/Tools/ChangeLog (100157 => 100158)


--- trunk/Tools/ChangeLog	2011-11-14 17:31:31 UTC (rev 100157)
+++ trunk/Tools/ChangeLog	2011-11-14 17:44:33 UTC (rev 100158)
@@ -1,3 +1,12 @@
+2011-11-14  Andrew Scherkus  <[email protected]>
+
+        [Chromium] Skip media layout tests on chromium-gpu-cg-mac-leopard platform
+        https://bugs.webkit.org/show_bug.cgi?id=72147
+
+        Reviewed by Adam Barth.
+
+        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
+
 2011-11-14  Tor Arne Vestbø  <[email protected]>
 
         [Qt] Move the QtWebKit module file to match the layout of Qt's mkspecs

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py (100157 => 100158)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py	2011-11-14 17:31:31 UTC (rev 100157)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py	2011-11-14 17:44:33 UTC (rev 100158)
@@ -80,7 +80,8 @@
     if not paths:
         paths = ['compositing', 'platform/chromium/compositing', 'animations/3d']
 
-        if not port.name().startswith('chromium-gpu-mac-leopard'):
+        if (port.name() != 'chromium-gpu-mac-leopard' and
+            port.name() != 'chromium-gpu-cg-mac-leopard'):
             # Only run tests requiring accelerated compositing on platforms that
             # support it.
             # FIXME: we should add the above paths here as well but let's test
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to