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

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

Issue 2471373003: Run webgl_conformance_angle_tests on linux_optional_gpu_tests_rel. (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | testing/buildbot/chromium.gpu.fyi.json » ('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 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after
1155 ], 1155 ],
1156 'target_name': 'webgl_conformance', 1156 'target_name': 'webgl_conformance',
1157 'extra_browser_args': [ 1157 'extra_browser_args': [
1158 '--use-angle=gl', 1158 '--use-angle=gl',
1159 ], 1159 ],
1160 }, 1160 },
1161 'webgl_conformance_angle_tests': { 1161 'webgl_conformance_angle_tests': {
1162 'tester_configs': [ 1162 'tester_configs': [
1163 { 1163 {
1164 'fyi_only': True, 1164 'fyi_only': True,
1165 'os_types': ['linux'] 1165 'os_types': ['linux'],
1166 'run_on_optional': True,
1166 } 1167 }
1167 ], 1168 ],
1168 'target_name': 'webgl_conformance', 1169 'target_name': 'webgl_conformance',
1169 'extra_browser_args': [ 1170 'extra_browser_args': [
1170 '--use-gl=angle', 1171 '--use-gl=angle',
1171 ], 1172 ],
1172 }, 1173 },
1173 'webgl2_conformance_tests': { 1174 'webgl2_conformance_tests': {
1174 'tester_configs': [ 1175 'tester_configs': [
1175 { 1176 {
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) 1505 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True)
1505 fp.write('\n') 1506 fp.write('\n')
1506 1507
1507 def main(): 1508 def main():
1508 generate_all_tests(FYI_WATERFALL, True) 1509 generate_all_tests(FYI_WATERFALL, True)
1509 generate_all_tests(WATERFALL, False) 1510 generate_all_tests(WATERFALL, False)
1510 return 0 1511 return 0
1511 1512
1512 if __name__ == "__main__": 1513 if __name__ == "__main__":
1513 sys.exit(main()) 1514 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.fyi.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698