Bug 1456746 - [wpt] Startup/Shutdown timeout for Firefox needs to be increased to 70s. draft
authorHenrik Skupin <mail@hskupin.info>
Thu, 02 Aug 2018 10:29:41 +0200
changeset 825753 da12b0c2826ff1c06e2da3aaef8f4d2e00f5ac7a
parent 825566 3cb90f16402bc5e1203e2771dc93553b8377fa40
push id118162
push userbmo:hskupin@gmail.com
push dateThu, 02 Aug 2018 08:30:09 +0000
bugs1456746
milestone63.0a1
Bug 1456746 - [wpt] Startup/Shutdown timeout for Firefox needs to be increased to 70s. To catch possible crashes as triggered by the background hang monitor the startup/shutdown timeouts for Firefox have to be increased to 70s. MozReview-Commit-ID: 27s69MrFPeM
testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py
--- a/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py
+++ b/testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/firefox.py
@@ -142,18 +142,18 @@ def run_info_extras(**kwargs):
 
 def update_properties():
     return (["debug", "webrender", "e10s", "os", "version", "processor", "bits"],
             {"debug", "e10s", "webrender"})
 
 
 class FirefoxBrowser(Browser):
     used_ports = set()
-    init_timeout = 60
-    shutdown_timeout = 60
+    init_timeout = 70
+    shutdown_timeout = 70
 
     def __init__(self, logger, binary, prefs_root, test_type, extra_prefs=None, debug_info=None,
                  symbols_path=None, stackwalk_binary=None, certutil_binary=None,
                  ca_certificate_path=None, e10s=False, stackfix_dir=None,
                  binary_args=None, timeout_multiplier=None, leak_check=False, asan=False,
                  stylo_threads=1, chaos_mode_flags=None, config=None):
         Browser.__init__(self, logger)
         self.binary = binary