Bug 1470646 - Increase wdspec long timeout to three minutes. r?whimboo draft
authorAndreas Tolfsen <ato@sny.no>
Mon, 02 Jul 2018 12:50:13 +0100
changeset 813588 1fceed04bab512a6548206a4c31420276398cfdd
parent 813587 030abe5e4debefb745f881c89de6db0581ba7a92
child 813589 c6069faeb7f561ce677a2efc134ab4834acec254
push id114929
push userbmo:ato@sny.no
push dateTue, 03 Jul 2018 11:58:17 +0000
reviewerswhimboo
bugs1470646
milestone63.0a1
Bug 1470646 - Increase wdspec long timeout to three minutes. r?whimboo The long timeout for WPT wdspec tests is currently two minutes, but with modifications to make more session tests run in Firefox, it has been discovered that the long timeout is not sufficient time for Firefox to consistently run the New Session command tests in automation without timing out. This increases the long timeout to three minutes (180 seconds). MozReview-Commit-ID: A8A4zecOwES
testing/web-platform/tests/tools/wptrunner/wptrunner/wpttest.py
--- a/testing/web-platform/tests/tools/wptrunner/wptrunner/wpttest.py
+++ b/testing/web-platform/tests/tools/wptrunner/wptrunner/wpttest.py
@@ -402,17 +402,17 @@ class ReftestTest(Test):
 
 class WdspecTest(Test):
 
     result_cls = WdspecResult
     subtest_result_cls = WdspecSubtestResult
     test_type = "wdspec"
 
     default_timeout = 25
-    long_timeout = 120
+    long_timeout = 180  # 3 minutes
 
 
 manifest_test_cls = {"reftest": ReftestTest,
                      "testharness": TestharnessTest,
                      "manual": ManualTest,
                      "wdspec": WdspecTest}