Title: [100509] trunk/Tools
Revision
100509
Author
[email protected]
Date
2011-11-16 14:44:14 -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 (100508 => 100509)


--- trunk/Tools/ChangeLog	2011-11-16 22:37:55 UTC (rev 100508)
+++ trunk/Tools/ChangeLog	2011-11-16 22:44:14 UTC (rev 100509)
@@ -1,3 +1,12 @@
+2011-11-16  Dirk Pranke  <[email protected]>
+
+        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  Ryosuke Niwa  <[email protected]>
 
         contributors_by_fuzzy_match is super slow

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


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py	2011-11-16 22:37:55 UTC (rev 100508)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_gpu.py	2011-11-16 22:44:14 UTC (rev 100509)
@@ -100,6 +100,14 @@
             # dummy test. See https://bugs.webkit.org/show_bug.cgi?id=72498.
             paths = ['fast/html/article-element.html']
 
+        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
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to