Title: [97158] trunk/Tools
Revision
97158
Author
[email protected]
Date
2011-10-11 09:53:41 -0700 (Tue, 11 Oct 2011)

Log Message

[Qt] [WK2] NRWT failed to launch MiniBrowser after test run
https://bugs.webkit.org/show_bug.cgi?id=68016

Patch by Kristóf Kosztyó <[email protected]> on 2011-10-11
Reviewed by Chang Shu.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (97157 => 97158)


--- trunk/Tools/ChangeLog	2011-10-11 16:48:52 UTC (rev 97157)
+++ trunk/Tools/ChangeLog	2011-10-11 16:53:41 UTC (rev 97158)
@@ -1,3 +1,12 @@
+2011-10-11  Kristóf Kosztyó  <[email protected]>
+
+        [Qt] [WK2] NRWT failed to launch MiniBrowser after test run
+        https://bugs.webkit.org/show_bug.cgi?id=68016
+
+        Reviewed by Chang Shu.
+
+        * Scripts/webkitpy/layout_tests/port/qt.py:
+
 2011-10-11  Raphael Kubo da Costa  <[email protected]>
 
         [EFL] DRT: Return the right window count in LayoutTestController.

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


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/qt.py	2011-10-11 16:48:52 UTC (rev 97157)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/qt.py	2011-10-11 16:53:41 UTC (rev 97158)
@@ -100,7 +100,8 @@
     # FIXME: We should find a way to share this implmentation with Gtk,
     # or teach run-launcher how to call run-safari and move this down to WebKitPort.
     def show_results_html_file(self, results_filename):
-        run_launcher_args = ["file://%s" % results_filename]
+        run_launcher_args = []
         if self.get_option('webkit_test_runner'):
-            run_launcher_args.append('--webkit-test-runner')
+            run_launcher_args.append('-2')
+        run_launcher_args.append("file://%s" % results_filename)
         self._run_script("run-launcher", run_launcher_args)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to