Title: [98195] trunk/Tools
Revision
98195
Author
[email protected]
Date
2011-10-22 15:38:23 -0700 (Sat, 22 Oct 2011)

Log Message

[WK2][GTK] run-launcher script fails after testing WK2 tests
https://bugs.webkit.org/show_bug.cgi?id=70676

Patch by Zan Dobersek <[email protected]> on 2011-10-22
Reviewed by Andreas Kling.

Pass the '-2' flag instead of '--webkit-test-runner' when executing
run-launcher script after testing with WebKitTestRunner.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (98194 => 98195)


--- trunk/Tools/ChangeLog	2011-10-22 19:31:38 UTC (rev 98194)
+++ trunk/Tools/ChangeLog	2011-10-22 22:38:23 UTC (rev 98195)
@@ -1,5 +1,17 @@
 2011-10-22  Zan Dobersek  <[email protected]>
 
+        [WK2][GTK] run-launcher script fails after testing WK2 tests
+        https://bugs.webkit.org/show_bug.cgi?id=70676
+
+        Reviewed by Andreas Kling.
+
+        Pass the '-2' flag instead of '--webkit-test-runner' when executing
+        run-launcher script after testing with WebKitTestRunner.
+
+        * Scripts/webkitpy/layout_tests/port/gtk.py:
+
+2011-10-22  Zan Dobersek  <[email protected]>
+
         [WK2][GTK] Missing env variables cause WKTR to crash
         https://bugs.webkit.org/show_bug.cgi?id=70674
 

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


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2011-10-22 19:31:38 UTC (rev 98194)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/gtk.py	2011-10-22 22:38:23 UTC (rev 98195)
@@ -129,7 +129,7 @@
     def show_results_html_file(self, results_filename):
         run_launcher_args = ["file://%s" % results_filename]
         if self.get_option('webkit_test_runner'):
-            run_launcher_args.append('--webkit-test-runner')
+            run_launcher_args.append('-2')
         # FIXME: old-run-webkit-tests also added ["-graphicssystem", "raster", "-style", "windows"]
         # FIXME: old-run-webkit-tests converted results_filename path for cygwin.
         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