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

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

Issue 2799783002: Add automated VR latency tester (Closed)
Patch Set: Rebase + address final comments 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 'components_gcm_driver_junit_tests', 172 'components_gcm_driver_junit_tests',
173 'components_invalidation_impl_junit_tests', 173 'components_invalidation_impl_junit_tests',
174 'components_policy_junit_tests', 174 'components_policy_junit_tests',
175 'components_variations_junit_tests', 175 'components_variations_junit_tests',
176 'components_web_restrictions_junit_tests', 176 'components_web_restrictions_junit_tests',
177 'content_junit_tests', 177 'content_junit_tests',
178 'content_junit_tests', 178 'content_junit_tests',
179 'junit_unit_tests', 179 'junit_unit_tests',
180 'media_router_perf_tests', 180 'media_router_perf_tests',
181 'media_router_tests', 181 'media_router_tests',
182 'motopho_latency_test',
182 'net_junit_tests', 183 'net_junit_tests',
183 'net_junit_tests', 184 'net_junit_tests',
184 'ui_junit_tests', 185 'ui_junit_tests',
185 'webapk_client_junit_tests', 186 'webapk_client_junit_tests',
186 'webapk_shell_apk_junit_tests', 187 'webapk_shell_apk_junit_tests',
187 188
188 # These tests are only run on WebRTC CI. 189 # These tests are only run on WebRTC CI.
189 'AppRTCMobileTest', 190 'AppRTCMobileTest',
190 'android_junit_tests', 191 'android_junit_tests',
191 'audio_decoder_unittests', 192 'audio_decoder_unittests',
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 elif args.mode == 'remaining': 490 elif args.mode == 'remaining':
490 print_remaining(args.test_name, tests_location) 491 print_remaining(args.test_name, tests_location)
491 return result 492 return result
492 except Error as e: 493 except Error as e:
493 sys.stderr.write('%s\n' % e) 494 sys.stderr.write('%s\n' % e)
494 return 1 495 return 1
495 496
496 497
497 if __name__ == "__main__": 498 if __name__ == "__main__":
498 sys.exit(main()) 499 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