Bug 1377915 - Increase page load timeout for talos tests running on linux64-ccov. r?dustin draft
authorGreg Mierzwinski <gmierz2@outlook.com>
Mon, 03 Jul 2017 14:00:51 -0400
changeset 603818 fc28f1acb101b796197b832de3265dddbe5309f8
parent 603312 a3b192dc8344679ce208af42b6246c3c0d42cab3
child 636017 620143826562512728e4b6f180f232556cfd7ec7
push id66879
push userbmo:gmierz2@outlook.com
push dateTue, 04 Jul 2017 20:24:28 +0000
reviewersdustin
bugs1377915
milestone56.0a1
Bug 1377915 - Increase page load timeout for talos tests running on linux64-ccov. r?dustin This patch increases the amount of time that a page load is allowed to take from 5 seconds to 15 seconds (specified as milliseconds in the argument) when the Talos test suite is running on the linux64-ccov build. MozReview-Commit-ID: BuoQP5wmxlb
taskcluster/taskgraph/transforms/tests.py
--- a/taskcluster/taskgraph/transforms/tests.py
+++ b/taskcluster/taskgraph/transforms/tests.py
@@ -514,16 +514,18 @@ def enable_code_coverage(config, tests):
                 test['max-run-time'] = 7200
                 test['mozharness']['config'] = ['talos/linux64_config_taskcluster.py']
                 test['mozharness']['extra-options'].append('--add-option')
                 test['mozharness']['extra-options'].append('--cycles,1')
                 test['mozharness']['extra-options'].append('--add-option')
                 test['mozharness']['extra-options'].append('--tppagecycles,1')
                 test['mozharness']['extra-options'].append('--add-option')
                 test['mozharness']['extra-options'].append('--no-upload-results')
+                test['mozharness']['extra-options'].append('--add-option')
+                test['mozharness']['extra-options'].append('--tptimeout,15000')
         elif test['build-platform'] == 'linux64-jsdcov/opt':
             test['run-on-projects'] = ['mozilla-central']
         yield test
 
 
 @transforms.add
 def handle_run_on_projects(config, tests):
     """Handle translating `built-projects` appropriately"""