Skip to content

Commit

Permalink
Merge pull request #164 from w3c/jgraham/firefox-reftest-timeout
Browse files Browse the repository at this point in the history
Increase the timeout for reftests in Firefox-non-e10s-debug.
  • Loading branch information
jgraham committed Dec 8, 2015
2 parents 045e705 + 390aa8a commit 32abf5c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions wptrunner/browsers/firefox.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,13 @@ def executor_kwargs(test_type, server_config, cache_manager, run_info_data,
cache_manager, **kwargs)
executor_kwargs["close_after_done"] = True
if kwargs["timeout_multiplier"] is None:
if kwargs["gecko_e10s"] and test_type == "reftest":
if test_type == "reftest":
if run_info_data["debug"]:
executor_kwargs["timeout_multiplier"] = 4
else:
executor_kwargs["timeout_multiplier"] = 2
elif run_info_data["debug"]:
executor_kwargs["timeout_multiplier"] = 3
elif test_type == "reftest":
executor_kwargs["timeout_multiplier"] = 2
return executor_kwargs


Expand Down

0 comments on commit 32abf5c

Please sign in to comment.