Title: [97866] trunk
Revision
97866
Author
[email protected]
Date
2011-10-19 08:37:50 -0700 (Wed, 19 Oct 2011)

Log Message

[Qt] Support WK1-only Skipped list
https://bugs.webkit.org/show_bug.cgi?id=70254

Reviewed by Csaba Osztrogonác.

Tools: 

Added a new search path qt-wk1 for skipping WK1-only tests.

* Scripts/webkitpy/layout_tests/port/qt.py: NRWT
* Scripts/old-run-webkit-tests: ORWT

LayoutTests: 

* platform/qt-wk1: Added.
* platform/qt-wk1/Skipped: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (97865 => 97866)


--- trunk/LayoutTests/ChangeLog	2011-10-19 15:25:15 UTC (rev 97865)
+++ trunk/LayoutTests/ChangeLog	2011-10-19 15:37:50 UTC (rev 97866)
@@ -1,3 +1,13 @@
+2011-10-19  Chang Shu  <[email protected]>
+
+        [Qt] Support WK1-only Skipped list
+        https://bugs.webkit.org/show_bug.cgi?id=70254
+
+        Reviewed by Csaba Osztrogonác.
+
+        * platform/qt-wk1: Added.
+        * platform/qt-wk1/Skipped: Added.
+
 2011-10-19  Renata Hodovan  <[email protected]>
 
         Add new renderer for SVGRectElement.

Added: trunk/LayoutTests/platform/qt-wk1/Skipped (0 => 97866)


--- trunk/LayoutTests/platform/qt-wk1/Skipped	                        (rev 0)
+++ trunk/LayoutTests/platform/qt-wk1/Skipped	2011-10-19 15:37:50 UTC (rev 97866)
@@ -0,0 +1 @@
+# Tests failing on WK1 only (working on WK2)

Modified: trunk/Tools/ChangeLog (97865 => 97866)


--- trunk/Tools/ChangeLog	2011-10-19 15:25:15 UTC (rev 97865)
+++ trunk/Tools/ChangeLog	2011-10-19 15:37:50 UTC (rev 97866)
@@ -1,3 +1,15 @@
+2011-10-19  Chang Shu  <[email protected]>
+
+        [Qt] Support WK1-only Skipped list
+        https://bugs.webkit.org/show_bug.cgi?id=70254
+
+        Reviewed by Csaba Osztrogonác.
+
+        Added a new search path qt-wk1 for skipping WK1-only tests.
+
+        * Scripts/webkitpy/layout_tests/port/qt.py: NRWT
+        * Scripts/old-run-webkit-tests: ORWT
+
 2011-10-19  Gabor Rapcsanyi  <[email protected]>
 
         [GTK] Enable to use built-product-archive on GTK platform

Modified: trunk/Tools/Scripts/old-run-webkit-tests (97865 => 97866)


--- trunk/Tools/Scripts/old-run-webkit-tests	2011-10-19 15:25:15 UTC (rev 97865)
+++ trunk/Tools/Scripts/old-run-webkit-tests	2011-10-19 15:37:50 UTC (rev 97866)
@@ -2473,6 +2473,10 @@
     # cross-platform issues, the Windows and Qt ports use the Mac skipped list
     # additionally to their own to avoid maintaining separate lists.
     push(@skippedFileDirectories, catdir($platformBaseDirectory, "wk2")) if ($platform eq "win-wk2" || $platform eq "qt-wk2" || $platform eq "mac-wk2" || $platform eq "gtk-wk2");
+
+    # Add Qt WK1-only skipped tests.
+    push(@skippedFileDirectories, catdir($platformBaseDirectory, "qt-wk1")) if (isQt() && !$useWebKitTestRunner);
+
     foreach my $level (@skippedFileDirectories) {
         if (open SKIPPED, "<", "$level/Skipped") {
             if ($verbose) {

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/qt.py (97865 => 97866)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/qt.py	2011-10-19 15:25:15 UTC (rev 97865)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/qt.py	2011-10-19 15:37:50 UTC (rev 97866)
@@ -130,6 +130,8 @@
             search_paths.add('qt-5.0')
         if self.get_option('webkit_test_runner'):
             search_paths.update(['qt-wk2', 'wk2'])
+        else:
+            search_paths.add('qt-wk1')
         return search_paths
 
     def _runtime_feature_list(self):
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to