Title: [169893] trunk/Tools
- Revision
- 169893
- Author
- [email protected]
- Date
- 2014-06-12 05:53:20 -0700 (Thu, 12 Jun 2014)
Log Message
[GTK] Performance tests should be always ran with WKTR.
https://bugs.webkit.org/show_bug.cgi?id=133780
Patch by Carlos Alberto Lopez Perez <[email protected]> on 2014-06-12
Reviewed by Ryosuke Niwa.
* Scripts/webkitpy/performance_tests/perftestsrunner.py:
(PerfTestsRunner.__init__): Enable webkit_test_runner when port
is GTK.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (169892 => 169893)
--- trunk/Tools/ChangeLog 2014-06-12 12:47:46 UTC (rev 169892)
+++ trunk/Tools/ChangeLog 2014-06-12 12:53:20 UTC (rev 169893)
@@ -1,3 +1,14 @@
+2014-06-12 Carlos Alberto Lopez Perez <[email protected]>
+
+ [GTK] Performance tests should be always ran with WKTR.
+ https://bugs.webkit.org/show_bug.cgi?id=133780
+
+ Reviewed by Ryosuke Niwa.
+
+ * Scripts/webkitpy/performance_tests/perftestsrunner.py:
+ (PerfTestsRunner.__init__): Enable webkit_test_runner when port
+ is GTK.
+
2014-06-12 Sergio Villar Senin <[email protected]>
[GTK] REGRESSION: application name is not correctly appended to the UA
Modified: trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py (169892 => 169893)
--- trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py 2014-06-12 12:47:46 UTC (rev 169892)
+++ trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py 2014-06-12 12:53:20 UTC (rev 169893)
@@ -65,6 +65,11 @@
else:
self._host = Host()
self._port = self._host.port_factory.get(self._options.platform, self._options)
+
+ # The GTK+ port only supports WebKit2, so it always uses WKTR.
+ if self._port.name().startswith("gtk"):
+ self._options.webkit_test_runner = True
+
self._host.initialize_scm()
self._webkit_base_dir_len = len(self._port.webkit_base())
self._base_path = self._port.perf_tests_dir()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes