Title: [145948] trunk/Tools
Revision
145948
Author
simon.fra...@apple.com
Date
2013-03-15 15:05:36 -0700 (Fri, 15 Mar 2013)

Log Message

Have the mac port support per_test_timeout in webkitpy
https://bugs.webkit.org/show_bug.cgi?id=112466

Reviewed by Dirk Pranke.

Both WTR and DRT handle --timeout arguments, so we can
have the scripts pass the timeout values down to the tools.

* Scripts/webkitpy/layout_tests/port/mac.py:
(MacPort.supports_per_test_timeout):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (145947 => 145948)


--- trunk/Tools/ChangeLog	2013-03-15 21:57:55 UTC (rev 145947)
+++ trunk/Tools/ChangeLog	2013-03-15 22:05:36 UTC (rev 145948)
@@ -1,3 +1,16 @@
+2013-03-15  Simon Fraser  <simon.fra...@apple.com>
+
+        Have the mac port support per_test_timeout in webkitpy
+        https://bugs.webkit.org/show_bug.cgi?id=112466
+
+        Reviewed by Dirk Pranke.
+        
+        Both WTR and DRT handle --timeout arguments, so we can
+        have the scripts pass the timeout values down to the tools.
+
+        * Scripts/webkitpy/layout_tests/port/mac.py:
+        (MacPort.supports_per_test_timeout):
+
 2013-03-15  Rouslan Solomakhin  <rous...@chromium.org>
 
         Remove setAsynchronousSpellCheckingEnabled from test runners

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/mac.py (145947 => 145948)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/mac.py	2013-03-15 21:57:55 UTC (rev 145947)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/mac.py	2013-03-15 22:05:36 UTC (rev 145948)
@@ -65,6 +65,9 @@
             return 350 * 1000
         return super(MacPort, self).default_timeout_ms()
 
+    def supports_per_test_timeout(self):
+        return True
+
     def _build_driver_flags(self):
         return ['ARCHS=i386'] if self.architecture() == 'x86' else []
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to