Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: masters/master.chromium.win/master_win_cfg.py

Issue 410353004: Huge timeout on Win8 Aura to catch while broken (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: . Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from buildbot.scheduler import Triggerable 5 from buildbot.scheduler import Triggerable
6 from buildbot.schedulers.basic import SingleBranchScheduler 6 from buildbot.schedulers.basic import SingleBranchScheduler
7 7
8 from master.factory import annotator_factory 8 from master.factory import annotator_factory
9 9
10 m_annotator = annotator_factory.AnnotatorFactory() 10 m_annotator = annotator_factory.AnnotatorFactory()
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 'name': 'Win Builder (dbg)', 81 'name': 'Win Builder (dbg)',
82 'triggers': ['win_dbg_trigger'], 82 'triggers': ['win_dbg_trigger'],
83 }, 83 },
84 {'name': 'Win7 Tests (dbg)(1)'}, 84 {'name': 'Win7 Tests (dbg)(1)'},
85 {'name': 'Win7 Tests (dbg)(2)'}, 85 {'name': 'Win7 Tests (dbg)(2)'},
86 {'name': 'Win7 Tests (dbg)(3)'}, 86 {'name': 'Win7 Tests (dbg)(3)'},
87 {'name': 'Win7 Tests (dbg)(4)'}, 87 {'name': 'Win7 Tests (dbg)(4)'},
88 {'name': 'Win7 Tests (dbg)(5)'}, 88 {'name': 'Win7 Tests (dbg)(5)'},
89 {'name': 'Win7 Tests (dbg)(6)'}, 89 {'name': 'Win7 Tests (dbg)(6)'},
90 {'name': 'Interactive Tests (dbg)'}, 90 {'name': 'Interactive Tests (dbg)'},
91 {'name': 'Win8 Aura'}, 91 # Temporary huge timeout to debug http://crbug.com/340422.
92 {'name': 'Win8 Aura', 'timeout': 86400 },
92 ] 93 ]
93 94
94 c['builders'].extend([ 95 c['builders'].extend([
95 { 96 {
96 'name': spec['name'], 97 'name': spec['name'],
97 'factory': m_annotator.BaseFactory( 98 'factory': m_annotator.BaseFactory(
98 'chromium', 99 'chromium',
99 factory_properties=spec.get('factory_properties'), 100 factory_properties=spec.get('factory_properties'),
100 triggers=spec.get('triggers'), 101 triggers=spec.get('triggers'),
101 timeout=2400), 102 timeout=spec.get('timeout', 2400)),
102 'notify_on_missing': True, 103 'notify_on_missing': True,
103 'category': '2windows', 104 'category': '2windows',
104 } for spec in specs 105 } for spec in specs
105 ]) 106 ])
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698