Title: [177493] trunk/Tools
- Revision
- 177493
- Author
- [email protected]
- Date
- 2014-12-18 05:32:36 -0800 (Thu, 18 Dec 2014)
Log Message
[GTK] [EFL] Enable per_test_timeout
https://bugs.webkit.org/show_bug.cgi?id=139771
Reviewed by Csaba Osztrogonác.
This is needed to make WKTR use either the default port timeout, or the
user supplied timeout via the "--time-out-ms" parameter of run-webkit-tests.
Otherwise WTR will use the default (30 seconds after r177363 and r177471).
* Scripts/webkitpy/port/efl.py:
(EflPort.supports_per_test_timeout): Enabled.
* Scripts/webkitpy/port/gtk.py:
(GtkPort.supports_per_test_timeout): Enabled.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (177492 => 177493)
--- trunk/Tools/ChangeLog 2014-12-18 13:15:11 UTC (rev 177492)
+++ trunk/Tools/ChangeLog 2014-12-18 13:32:36 UTC (rev 177493)
@@ -1,3 +1,19 @@
+2014-12-18 Carlos Alberto Lopez Perez <[email protected]>
+
+ [GTK] [EFL] Enable per_test_timeout
+ https://bugs.webkit.org/show_bug.cgi?id=139771
+
+ Reviewed by Csaba Osztrogonác.
+
+ This is needed to make WKTR use either the default port timeout, or the
+ user supplied timeout via the "--time-out-ms" parameter of run-webkit-tests.
+ Otherwise WTR will use the default (30 seconds after r177363 and r177471).
+
+ * Scripts/webkitpy/port/efl.py:
+ (EflPort.supports_per_test_timeout): Enabled.
+ * Scripts/webkitpy/port/gtk.py:
+ (GtkPort.supports_per_test_timeout): Enabled.
+
2014-12-17 Lucas Forschler <[email protected]>
Move Apple buildbot slaves to their new home.
Modified: trunk/Tools/Scripts/webkitpy/port/efl.py (177492 => 177493)
--- trunk/Tools/Scripts/webkitpy/port/efl.py 2014-12-18 13:15:11 UTC (rev 177492)
+++ trunk/Tools/Scripts/webkitpy/port/efl.py 2014-12-18 13:32:36 UTC (rev 177493)
@@ -78,6 +78,9 @@
return env
+ def supports_per_test_timeout(self):
+ return True
+
def default_timeout_ms(self):
# Tests run considerably slower under gdb
# or valgrind.
Modified: trunk/Tools/Scripts/webkitpy/port/gtk.py (177492 => 177493)
--- trunk/Tools/Scripts/webkitpy/port/gtk.py 2014-12-18 13:15:11 UTC (rev 177492)
+++ trunk/Tools/Scripts/webkitpy/port/gtk.py 2014-12-18 13:32:36 UTC (rev 177493)
@@ -80,6 +80,9 @@
return XorgDriver
return XvfbDriver
+ def supports_per_test_timeout(self):
+ return True
+
def default_timeout_ms(self):
# Starting an application under Valgrind takes a lot longer than normal
# so increase the timeout (empirically 10x is enough to avoid timeouts).
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes