| OLD | NEW |
| 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 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1213 'fyi_only': True, | 1213 'fyi_only': True, |
| 1214 'os_types': ['linux'], | 1214 'os_types': ['linux'], |
| 1215 'run_on_optional': True, | 1215 'run_on_optional': True, |
| 1216 } | 1216 } |
| 1217 ], | 1217 ], |
| 1218 'target_name': 'webgl_conformance', | 1218 'target_name': 'webgl_conformance', |
| 1219 'extra_browser_args': [ | 1219 'extra_browser_args': [ |
| 1220 '--use-gl=angle', | 1220 '--use-gl=angle', |
| 1221 ], | 1221 ], |
| 1222 }, | 1222 }, |
| 1223 'webgl_conformance_d3d11_passthrough': { |
| 1224 'tester_configs': [ |
| 1225 { |
| 1226 'fyi_only': True, |
| 1227 'os_types': ['win'], |
| 1228 'run_on_optional': True, |
| 1229 } |
| 1230 ], |
| 1231 'target_name': 'webgl_conformance', |
| 1232 'extra_browser_args': [ |
| 1233 '--use-angle=d3d11', |
| 1234 '--use-passthrough-cmd-decoder', |
| 1235 ], |
| 1236 }, |
| 1223 'webgl2_conformance_tests': { | 1237 'webgl2_conformance_tests': { |
| 1224 'tester_configs': [ | 1238 'tester_configs': [ |
| 1225 { | 1239 { |
| 1226 # The WebGL 2.0 conformance tests take over an hour to run on | 1240 # The WebGL 2.0 conformance tests take over an hour to run on |
| 1227 # the Debug bots, which is too long. | 1241 # the Debug bots, which is too long. |
| 1228 'build_configs': ['Release', 'Release_x64'], | 1242 'build_configs': ['Release', 'Release_x64'], |
| 1229 'fyi_only': True, | 1243 'fyi_only': True, |
| 1230 'run_on_optional': True, | 1244 'run_on_optional': True, |
| 1231 }, | 1245 }, |
| 1232 ], | 1246 ], |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1557 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1571 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1558 fp.write('\n') | 1572 fp.write('\n') |
| 1559 | 1573 |
| 1560 def main(): | 1574 def main(): |
| 1561 generate_all_tests(FYI_WATERFALL, True) | 1575 generate_all_tests(FYI_WATERFALL, True) |
| 1562 generate_all_tests(WATERFALL, False) | 1576 generate_all_tests(WATERFALL, False) |
| 1563 return 0 | 1577 return 0 |
| 1564 | 1578 |
| 1565 if __name__ == "__main__": | 1579 if __name__ == "__main__": |
| 1566 sys.exit(main()) | 1580 sys.exit(main()) |
| OLD | NEW |