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

Side by Side Diff: tests/masters_test.py

Issue 1891973002: Remove client.legion (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Remove the actual master.client.legion files Created 4 years, 8 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.client.legion/master_site_config.py ('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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 'master.client.catapult': 'Catapult', 247 'master.client.catapult': 'Catapult',
248 'master.client.crashpad': 'ClientCrashpad', 248 'master.client.crashpad': 'ClientCrashpad',
249 'master.client.dart': 'Dart', 249 'master.client.dart': 'Dart',
250 'master.client.dart.fyi': 'DartFYI', 250 'master.client.dart.fyi': 'DartFYI',
251 'master.client.dart.packages': 'DartPackages', 251 'master.client.dart.packages': 'DartPackages',
252 'master.client.drmemory': 'DrMemory', 252 'master.client.drmemory': 'DrMemory',
253 'master.client.dynamorio': 'DynamoRIO', 253 'master.client.dynamorio': 'DynamoRIO',
254 'master.client.fletch': 'Dartino', 254 'master.client.fletch': 'Dartino',
255 'master.client.flutter': 'ClientFlutter', 255 'master.client.flutter': 'ClientFlutter',
256 'master.client.gyp': 'GYP', 256 'master.client.gyp': 'GYP',
257 'master.client.legion': 'ClientLegion',
258 'master.client.libyuv': 'Libyuv', 257 'master.client.libyuv': 'Libyuv',
259 'master.client.libvpx': 'Libvpx', 258 'master.client.libvpx': 'Libvpx',
260 'master.client.mojo': 'Mojo', 259 'master.client.mojo': 'Mojo',
261 'master.client.nacl': 'NativeClient', 260 'master.client.nacl': 'NativeClient',
262 'master.client.nacl.ports': 'WebPorts', 261 'master.client.nacl.ports': 'WebPorts',
263 'master.client.nacl.sdk': 'NativeClientSDK', 262 'master.client.nacl.sdk': 'NativeClientSDK',
264 'master.client.nacl.toolchain': 'NativeClientToolchain', 263 'master.client.nacl.toolchain': 'NativeClientToolchain',
265 'master.client.ndk': 'NDK', 264 'master.client.ndk': 'NDK',
266 'master.client.pdfium': 'Pdfium', 265 'master.client.pdfium': 'Pdfium',
267 'master.client.skia': 'Skia', 266 'master.client.skia': 'Skia',
(...skipping 30 matching lines...) Expand all
298 if os.path.exists(build_internal): 297 if os.path.exists(build_internal):
299 internal_test_data = chromium_utils.ParsePythonCfg( 298 internal_test_data = chromium_utils.ParsePythonCfg(
300 os.path.join(build_internal, 'tests', 'internal_masters_cfg.py'), 299 os.path.join(build_internal, 'tests', 'internal_masters_cfg.py'),
301 fail_hard=True) 300 fail_hard=True)
302 all_masters[build_internal] = internal_test_data['masters_test'] 301 all_masters[build_internal] = internal_test_data['masters_test']
303 return real_main(all_masters) 302 return real_main(all_masters)
304 303
305 304
306 if __name__ == '__main__': 305 if __name__ == '__main__':
307 sys.exit(main(sys.argv)) 306 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « masters/master.client.legion/master_site_config.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698