Title: [100491] trunk/Tools
Revision
100491
Author
dpra...@chromium.org
Date
2011-11-16 12:42:38 -0800 (Wed, 16 Nov 2011)

Log Message

Run a dummy test in the gpu configurations if there's nothing to do.
https://bugs.webkit.org/show_bug.cgi?id=72498

Reviewed by James Robinson.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (100490 => 100491)


--- trunk/Tools/ChangeLog	2011-11-16 20:27:58 UTC (rev 100490)
+++ trunk/Tools/ChangeLog	2011-11-16 20:42:38 UTC (rev 100491)
@@ -1,3 +1,12 @@
+2011-11-16  Dirk Pranke  <dpra...@chromium.org>
+
+        Run a dummy test in the gpu configurations if there's nothing to do.
+        https://bugs.webkit.org/show_bug.cgi?id=72498
+
+        Reviewed by James Robinson.
+
+        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
+
 2011-11-16  Chris Fleizach  <cfleiz...@apple.com>
 
         WebKitTestRunner needs to support accessibility-related DRT APIs

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


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py	2011-11-16 20:27:58 UTC (rev 100490)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py	2011-11-16 20:42:38 UTC (rev 100491)
@@ -92,6 +92,14 @@
             # in running the tests there.
             paths += ['fast/canvas', 'canvas/philip']
 
+        if not paths:
+            # FIXME: This is a hack until we can turn of the webkit_gpu
+            # tests on the bots. If paths is empty, test_files.find()
+            # finds *everything*. However, we have to return something,
+            # or NRWT thinks there's something wrong. So, we return a single
+            # dummy test. See https://bugs.webkit.org/show_bug.cgi?id=72498.
+            paths = ['fast/html/article-element.html']
+
     return set([port.relative_test_filename(f) for f in test_files.find(port, paths)])
 
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to