| 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 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 ], | 801 ], |
| 802 'target_name': 'webgl_conformance', | 802 'target_name': 'webgl_conformance', |
| 803 'extra_browser_args': [ | 803 'extra_browser_args': [ |
| 804 '--use-gl=angle', | 804 '--use-gl=angle', |
| 805 ], | 805 ], |
| 806 }, | 806 }, |
| 807 'webgl2_conformance_tests': { | 807 'webgl2_conformance_tests': { |
| 808 'tester_configs': [ | 808 'tester_configs': [ |
| 809 { | 809 { |
| 810 'allow_on_mac_nvidia': True, | 810 'allow_on_mac_nvidia': True, |
| 811 # The WebGL 2.0 conformance tests take over an hour to run on |
| 812 # the Debug bots, which is too long. |
| 813 'build_configs': ['Release', 'Release_x64'], |
| 811 'fyi_only': True, | 814 'fyi_only': True, |
| 812 'run_on_optional': True, | 815 'run_on_optional': True, |
| 813 }, | 816 }, |
| 814 ], | 817 ], |
| 815 'disabled_tester_configs': [ | 818 'disabled_tester_configs': [ |
| 816 { | 819 { |
| 817 'names': [ | 820 'names': [ |
| 818 # http://crbug.com/599451: this test is currently too slow | 821 # http://crbug.com/599451: this test is currently too slow |
| 819 # to run on x64 in Debug mode. Need to shard the tests. | 822 # to run on x64 in Debug mode. Need to shard the tests. |
| 820 'Win7 x64 Debug (NVIDIA)', | 823 'Win7 x64 Debug (NVIDIA)', |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1056 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1059 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1057 fp.write('\n') | 1060 fp.write('\n') |
| 1058 | 1061 |
| 1059 def main(): | 1062 def main(): |
| 1060 generate_all_tests(FYI_WATERFALL, True) | 1063 generate_all_tests(FYI_WATERFALL, True) |
| 1061 generate_all_tests(WATERFALL, False) | 1064 generate_all_tests(WATERFALL, False) |
| 1062 return 0 | 1065 return 0 |
| 1063 | 1066 |
| 1064 if __name__ == "__main__": | 1067 if __name__ == "__main__": |
| 1065 sys.exit(main()) | 1068 sys.exit(main()) |
| OLD | NEW |