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

Side by Side Diff: tests/masters_test.py

Issue 2277423002: Remove master.chromium.memory.fyi since it moved to master.chromium.memory.full. (Closed)
Patch Set: Add missing test. Created 4 years, 3 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 | « masters/master.chromium.memory.fyi/slaves.cfg ('k') | 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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Starts all masters and verify they can server /json/project fine. 6 """Starts all masters and verify they can server /json/project fine.
7 """ 7 """
8 8
9 import collections 9 import collections
10 import contextlib 10 import contextlib
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 'master.chromium.gatekeeper': 'Gatekeeper', 222 'master.chromium.gatekeeper': 'Gatekeeper',
223 'master.chromium.goma': 'ChromiumGoma', 223 'master.chromium.goma': 'ChromiumGoma',
224 'master.chromium.gpu': 'ChromiumGPU', 224 'master.chromium.gpu': 'ChromiumGPU',
225 'master.chromium.gpu.fyi': 'ChromiumGPUFYI', 225 'master.chromium.gpu.fyi': 'ChromiumGPUFYI',
226 'master.chromium.infra': 'Infra', 226 'master.chromium.infra': 'Infra',
227 'master.chromium.infra.cron': 'InfraCron', 227 'master.chromium.infra.cron': 'InfraCron',
228 'master.chromium.linux': 'ChromiumLinux', 228 'master.chromium.linux': 'ChromiumLinux',
229 'master.chromium.lkgr': 'ChromiumLKGR', 229 'master.chromium.lkgr': 'ChromiumLKGR',
230 'master.chromium.mac': 'ChromiumMac', 230 'master.chromium.mac': 'ChromiumMac',
231 'master.chromium.memory': 'ChromiumMemory', 231 'master.chromium.memory': 'ChromiumMemory',
232 'master.chromium.memory.fyi': 'ChromiumMemoryFYI',
233 'master.chromium.memory.full': 'ChromiumMemoryFull', 232 'master.chromium.memory.full': 'ChromiumMemoryFull',
234 'master.chromium.perf': 'ChromiumPerf', 233 'master.chromium.perf': 'ChromiumPerf',
235 'master.chromium.perf.fyi': 'ChromiumPerfFyi', 234 'master.chromium.perf.fyi': 'ChromiumPerfFyi',
236 'master.chromium.swarm': 'ChromiumSwarm', 235 'master.chromium.swarm': 'ChromiumSwarm',
237 'master.chromium.tools.build': 'ChromiumToolsBuild', 236 'master.chromium.tools.build': 'ChromiumToolsBuild',
238 'master.chromium.webkit': 'ChromiumWebkit', 237 'master.chromium.webkit': 'ChromiumWebkit',
239 'master.chromium.webrtc': 'ChromiumWebRTC', 238 'master.chromium.webrtc': 'ChromiumWebRTC',
240 'master.chromium.webrtc.fyi': 'ChromiumWebRTCFYI', 239 'master.chromium.webrtc.fyi': 'ChromiumWebRTCFYI',
241 'master.chromium.win': 'ChromiumWin', 240 'master.chromium.win': 'ChromiumWin',
242 'master.chromiumos': 'ChromiumOS', 241 'master.chromiumos': 'ChromiumOS',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 if os.path.exists(build_internal): 295 if os.path.exists(build_internal):
297 internal_test_data = chromium_utils.ParsePythonCfg( 296 internal_test_data = chromium_utils.ParsePythonCfg(
298 os.path.join(build_internal, 'tests', 'internal_masters_cfg.py'), 297 os.path.join(build_internal, 'tests', 'internal_masters_cfg.py'),
299 fail_hard=True) 298 fail_hard=True)
300 all_masters[build_internal] = internal_test_data['masters_test'] 299 all_masters[build_internal] = internal_test_data['masters_test']
301 return real_main(all_masters) 300 return real_main(all_masters)
302 301
303 302
304 if __name__ == '__main__': 303 if __name__ == '__main__':
305 sys.exit(main(sys.argv)) 304 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « masters/master.chromium.memory.fyi/slaves.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698