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

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

Issue 2790683003: Add ios_chrome_reading_list_egtests as a try job. (Closed)
Patch Set: alphabetize Created 3 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 | « testing/buildbot/gn_isolate_map.pyl ('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 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 'chromium_builder_perf', 148 'chromium_builder_perf',
149 'chromium_builder_tests', 149 'chromium_builder_tests',
150 'chromium_swarm_tests', 150 'chromium_swarm_tests',
151 'chromiumos_preflight', 151 'chromiumos_preflight',
152 'mini_installer', 152 'mini_installer',
153 'next_version_mini_installer', 153 'next_version_mini_installer',
154 154
155 # iOS tests are listed in //ios/build/bots. 155 # iOS tests are listed in //ios/build/bots.
156 'cronet_test', 156 'cronet_test',
157 'ios_chrome_integration_egtests', 157 'ios_chrome_integration_egtests',
158 'ios_chrome_reading_list_egtests',
158 'ios_chrome_settings_egtests', 159 'ios_chrome_settings_egtests',
159 'ios_chrome_smoke_egtests', 160 'ios_chrome_smoke_egtests',
160 'ios_chrome_ui_egtests', 161 'ios_chrome_ui_egtests',
161 'ios_chrome_unittests', 162 'ios_chrome_unittests',
162 'ios_chrome_web_egtests', 163 'ios_chrome_web_egtests',
163 'ios_net_unittests', 164 'ios_net_unittests',
164 'ios_showcase_egtests', 165 'ios_showcase_egtests',
165 'ios_web_inttests', 166 'ios_web_inttests',
166 'ios_web_shell_egtests', 167 'ios_web_shell_egtests',
167 'ios_web_unittests', 168 'ios_web_unittests',
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 elif args.mode == 'remaining': 489 elif args.mode == 'remaining':
489 print_remaining(args.test_name, tests_location) 490 print_remaining(args.test_name, tests_location)
490 return result 491 return result
491 except Error as e: 492 except Error as e:
492 sys.stderr.write('%s\n' % e) 493 sys.stderr.write('%s\n' % e)
493 return 1 494 return 1
494 495
495 496
496 if __name__ == "__main__": 497 if __name__ == "__main__":
497 sys.exit(main()) 498 sys.exit(main())
OLDNEW
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698