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

Side by Side Diff: content/test/gpu/generate_buildbot_json.py

Issue 1867873002: Move unittests in content/common/gpu/client to gpu/ipc/client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update 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 | « content/test/content_test_suite.cc ('k') | content/test/run_all_gl_tests.cc » ('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 2016 The Chromium Authors. All rights reserved. 2 # Copyright 2016 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 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in 6 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in
7 the src/testing/buildbot directory. Maintaining these files by hand is 7 the src/testing/buildbot directory. Maintaining these files by hand is
8 too unwieldy. 8 too unwieldy.
9 """ 9 """
10 10
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 # removal of the --require-audio-hardware-for-testing flag for the 598 # removal of the --require-audio-hardware-for-testing flag for the
599 # time being. See crbug.com/574942. 599 # time being. See crbug.com/574942.
600 'audio_unittests': { 600 'audio_unittests': {
601 'tester_configs': [ 601 'tester_configs': [
602 { 602 {
603 'fyi_only': True, 603 'fyi_only': True,
604 } 604 }
605 ], 605 ],
606 'args': ['--use-gpu-in-tests'] 606 'args': ['--use-gpu-in-tests']
607 }, 607 },
608 'content_gl_tests': {'args': ['--use-gpu-in-tests']},
609 # TODO(kbr): content_unittests is killing the Linux GPU swarming 608 # TODO(kbr): content_unittests is killing the Linux GPU swarming
610 # bots. crbug.com/582094 . It's not useful now anyway until audio 609 # bots. crbug.com/582094 . It's not useful now anyway until audio
611 # hardware is deployed on the swarming bots, so stop running it 610 # hardware is deployed on the swarming bots, so stop running it
612 # everywhere. 611 # everywhere.
613 # 'content_unittests': {}, 612 # 'content_unittests': {},
614 'gl_tests': { 613 'gl_tests': {
615 'tester_configs': [ 614 'tester_configs': [
616 { 615 {
617 'allow_on_android': True, 616 'allow_on_android': True,
618 } 617 }
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) 1058 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True)
1060 fp.write('\n') 1059 fp.write('\n')
1061 1060
1062 def main(): 1061 def main():
1063 generate_all_tests(FYI_WATERFALL, True) 1062 generate_all_tests(FYI_WATERFALL, True)
1064 generate_all_tests(WATERFALL, False) 1063 generate_all_tests(WATERFALL, False)
1065 return 0 1064 return 0
1066 1065
1067 if __name__ == "__main__": 1066 if __name__ == "__main__":
1068 sys.exit(main()) 1067 sys.exit(main())
OLDNEW
« no previous file with comments | « content/test/content_test_suite.cc ('k') | content/test/run_all_gl_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698