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

Side by Side Diff: testing/buildbot/manage.py

Issue 2290373002: Adding perf test isolate and gn build target for swarming the benchmarks. (Closed)
Patch Set: fixing syntac 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 | « testing/buildbot/gn_isolate_map.pyl ('k') | tools/mb/mb_config.pyl » ('j') | 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 2015 The Chromium Authors. All rights reserved. 2 # Copyright 2015 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 """Toolbox to manage all the json files in this directory. 6 """Toolbox to manage all the json files in this directory.
7 7
8 It can reformat them in their canonical format or ensures they are well 8 It can reformat them in their canonical format or ensures they are well
9 formatted. 9 formatted.
10 """ 10 """
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 'cast_media_unittests', 139 'cast_media_unittests',
140 'cast_shell_browser_test', 140 'cast_shell_browser_test',
141 'chromevox_tests', 141 'chromevox_tests',
142 'nacl_helper_nonsfi_unittests', 142 'nacl_helper_nonsfi_unittests',
143 143
144 # TODO(kbr): teach this script about isolated_scripts tests. 144 # TODO(kbr): teach this script about isolated_scripts tests.
145 # crbug.com/620531 145 # crbug.com/620531
146 'telemetry_gpu_integration_test', 146 'telemetry_gpu_integration_test',
147 'telemetry_gpu_test', 147 'telemetry_gpu_test',
148 'telemetry_gpu_unittests', 148 'telemetry_gpu_unittests',
149 'telemetry_perf_tests',
149 'telemetry_perf_unittests', 150 'telemetry_perf_unittests',
150 'telemetry_unittests', 151 'telemetry_unittests',
151 } 152 }
152 153
153 154
154 class Error(Exception): 155 class Error(Exception):
155 """Processing error.""" 156 """Processing error."""
156 157
157 158
158 def get_isolates(): 159 def get_isolates():
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 elif args.mode == 'remaining': 392 elif args.mode == 'remaining':
392 print_remaining(args.test_name, tests_location) 393 print_remaining(args.test_name, tests_location)
393 return result 394 return result
394 except Error as e: 395 except Error as e:
395 sys.stderr.write('%s\n' % e) 396 sys.stderr.write('%s\n' % e)
396 return 1 397 return 1
397 398
398 399
399 if __name__ == "__main__": 400 if __name__ == "__main__":
400 sys.exit(main()) 401 sys.exit(main())
OLDNEW
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | tools/mb/mb_config.pyl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698