Title: [99920] trunk/Tools
- Revision
- 99920
- Author
- [email protected]
- Date
- 2011-11-10 17:45:57 -0800 (Thu, 10 Nov 2011)
Log Message
[Chromium] only run media GPU layout tests on platforms supporting accelerated compositing
https://bugs.webkit.org/show_bug.cgi?id=72001
Reviewed by Dirk Pranke.
* Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (99919 => 99920)
--- trunk/Tools/ChangeLog 2011-11-11 01:41:26 UTC (rev 99919)
+++ trunk/Tools/ChangeLog 2011-11-11 01:45:57 UTC (rev 99920)
@@ -1,3 +1,12 @@
+2011-11-10 Andrew Scherkus <[email protected]>
+
+ [Chromium] only run media GPU layout tests on platforms supporting accelerated compositing
+ https://bugs.webkit.org/show_bug.cgi?id=72001
+
+ Reviewed by Dirk Pranke.
+
+ * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
+
2011-11-05 Filip Pizlo <[email protected]>
bencher script should support remote benchmarking
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py (99919 => 99920)
--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py 2011-11-11 01:41:26 UTC (rev 99919)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py 2011-11-11 01:45:57 UTC (rev 99920)
@@ -78,7 +78,15 @@
def _tests(port, paths):
if not paths:
- paths = ['compositing', 'platform/chromium/compositing', 'media', 'animations/3d']
+ paths = ['compositing', 'platform/chromium/compositing', 'animations/3d']
+
+ if not port.name().startswith('chromium-gpu-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
+ # the waters with media first.
+ paths += ['media']
+
if not port.name().startswith('chromium-gpu-cg-mac'):
# Canvas is not yet accelerated on the Mac, so there's no point
# in running the tests there.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes