Title: [127203] trunk/Tools
Revision
127203
Author
[email protected]
Date
2012-08-30 15:57:54 -0700 (Thu, 30 Aug 2012)

Log Message

[Chromium-Android] Skip compositing/webgl and platform/chromium/virtual/threaded/compositing/webgl tests
https://bugs.webkit.org/show_bug.cgi?id=95400

Reviewed by Dirk Pranke.

WebGL is not enabled and should be skipped on Android (http://crbug.com/135877).

* Scripts/webkitpy/layout_tests/port/chromium_android.py:
(ChromiumAndroidPort.skipped_layout_tests):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (127202 => 127203)


--- trunk/Tools/ChangeLog	2012-08-30 22:50:00 UTC (rev 127202)
+++ trunk/Tools/ChangeLog	2012-08-30 22:57:54 UTC (rev 127203)
@@ -1,3 +1,15 @@
+2012-08-30  Xianzhu Wang  <[email protected]>
+
+        [Chromium-Android] Skip compositing/webgl and platform/chromium/virtual/threaded/compositing/webgl tests
+        https://bugs.webkit.org/show_bug.cgi?id=95400
+
+        Reviewed by Dirk Pranke.
+
+        WebGL is not enabled and should be skipped on Android (http://crbug.com/135877).
+
+        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
+        (ChromiumAndroidPort.skipped_layout_tests):
+
 2012-08-30  Gustavo Noronha Silva  <[email protected]>
 
         [GTK] Tries to run empty string when calling generate-gtkdoc when not using jhbuild

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py (127202 => 127203)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py	2012-08-30 22:50:00 UTC (rev 127202)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py	2012-08-30 22:57:54 UTC (rev 127203)
@@ -234,7 +234,7 @@
         # This method is more convenient to skip whole directories than SKIP in TestExpectations
         # because its higher priority.
         # Still use TestExpectations to skip individual tests and small directories.
-        skipped_tests = self._real_tests([
+        return set([
             # Skip tests of other platforms to save time.
             'platform/gtk',
             'platform/mac',
@@ -256,15 +256,15 @@
 
             'accessibility',
             'platform/chromium/accessibility',
+
+            # Skip webgl tests: http://crbug.com/135877.
+            'compositing/webgl',
+            'fast/canvas/webgl',
+            'http/tests/canvas/webgl',
+            'platform/chromium/virtual/gpu/fast/canvas/webgl',
+            'platform/chromium/virtual/threaded/compositing/webgl',
         ])
 
-        # Skip webgl tests: http://crbug.com/135877.
-        fast_canvas_webgl_tests = self._real_tests(['fast/canvas/webgl'])
-        return (skipped_tests |
-                fast_canvas_webgl_tests |
-                self._real_tests(['http/tests/canvas/webgl']) |
-                set(['platform/chromium/virtual/gpu/' + f for f in fast_canvas_webgl_tests]))
-
     def create_driver(self, worker_number, no_timeout=False):
         # We don't want the default DriverProxy which is not compatible with our driver.
         # See comments in ChromiumAndroidDriver.start().
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to