Title: [116518] trunk/Tools
Revision
116518
Author
[email protected]
Date
2012-05-09 05:22:17 -0700 (Wed, 09 May 2012)

Log Message

[Qt] ORWT fails with Qt 5 and WK2.
https://bugs.webkit.org/show_bug.cgi?id=85968

Patch by Allan Sandfeld Jensen <[email protected]> on 2012-05-09
Reviewed by Csaba Osztrogonác.

The Qt5 binary does not have a -style argument, so avoid using it.

* Scripts/old-run-webkit-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (116517 => 116518)


--- trunk/Tools/ChangeLog	2012-05-09 12:19:12 UTC (rev 116517)
+++ trunk/Tools/ChangeLog	2012-05-09 12:22:17 UTC (rev 116518)
@@ -1,3 +1,14 @@
+2012-05-09  Allan Sandfeld Jensen  <[email protected]>
+
+        [Qt] ORWT fails with Qt 5 and WK2.
+        https://bugs.webkit.org/show_bug.cgi?id=85968
+
+        Reviewed by Csaba Osztrogonác.
+
+        The Qt5 binary does not have a -style argument, so avoid using it.
+
+        * Scripts/old-run-webkit-tests:
+
 2012-05-09  Mikhail Pozdnyakov  <[email protected]>
 
         [EFL][DRT] LayoutTestController addUserScript implementation

Modified: trunk/Tools/Scripts/old-run-webkit-tests (116517 => 116518)


--- trunk/Tools/Scripts/old-run-webkit-tests	2012-05-09 12:19:12 UTC (rev 116517)
+++ trunk/Tools/Scripts/old-run-webkit-tests	2012-05-09 12:22:17 UTC (rev 116518)
@@ -1200,8 +1200,8 @@
   push(@configurationArgs, '-2') if $useWebKitTestRunner;
   system "Tools/Scripts/run-launcher", @configurationArgs, "file://".$testResults if $launchSafari;
 } elsif (isQt()) {
-  unshift @configurationArgs, qw(-style windows);
   if (getQtVersion() lt "5.0") {
+    unshift @configurationArgs, qw(-style windows);
     unshift @configurationArgs, qw(-graphicssystem raster);
   }
   if (isCygwin()) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to