Title: [128874] trunk/Tools
Revision
128874
Author
[email protected]
Date
2012-09-18 04:33:03 -0700 (Tue, 18 Sep 2012)

Log Message

[GTK] run-webkit-tests unable to find TestExpectations for WK2
https://bugs.webkit.org/show_bug.cgi?id=96998

Reviewed by Philippe Normand.

We should look for TestExpectations files in all the locations where
we currently look for Skipped files. This will allow
run-webkit-tests to look for TestExpectations files in
platform/gtk-wk2 and platform/wk2 if the "-2" flag is used.

* Scripts/webkitpy/layout_tests/port/gtk.py:
(GtkPort.expectations_files):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (128873 => 128874)


--- trunk/Tools/ChangeLog	2012-09-18 11:14:03 UTC (rev 128873)
+++ trunk/Tools/ChangeLog	2012-09-18 11:33:03 UTC (rev 128874)
@@ -1,3 +1,18 @@
+2012-09-18  Sergio Villar Senin  <[email protected]>
+
+        [GTK] run-webkit-tests unable to find TestExpectations for WK2
+        https://bugs.webkit.org/show_bug.cgi?id=96998
+
+        Reviewed by Philippe Normand.
+
+        We should look for TestExpectations files in all the locations where
+        we currently look for Skipped files. This will allow
+        run-webkit-tests to look for TestExpectations files in
+        platform/gtk-wk2 and platform/wk2 if the "-2" flag is used.
+
+        * Scripts/webkitpy/layout_tests/port/gtk.py:
+        (GtkPort.expectations_files):
+
 2012-09-18  Tor Arne Vestbø  <[email protected]>
 
         [Qt] Fix build without the QtQuick module

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py (128873 => 128874)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2012-09-18 11:14:03 UTC (rev 128873)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2012-09-18 11:33:03 UTC (rev 128874)
@@ -38,6 +38,9 @@
 class GtkPort(Port, PulseAudioSanitizer):
     port_name = "gtk"
 
+    def expectations_files(self):
+        return [self._filesystem.join(self._webkit_baseline_path(d), 'TestExpectations') for d in self._skipped_file_search_paths()]
+
     def _port_flag_for_scripts(self):
         return "--gtk"
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to