| 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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 # BUG 555545: Disable webgl_conformance_gl_tests on Win/AMD | 720 # BUG 555545: Disable webgl_conformance_gl_tests on Win/AMD |
| 721 { | 721 { |
| 722 'gpu': '1002:6779', | 722 'gpu': '1002:6779', |
| 723 'os': 'Windows-2008ServerR2-SP1' | 723 'os': 'Windows-2008ServerR2-SP1' |
| 724 }, | 724 }, |
| 725 # BUG 590951: Disable webgl_conformance_gl_tests on Win/Intel | 725 # BUG 590951: Disable webgl_conformance_gl_tests on Win/Intel |
| 726 { | 726 { |
| 727 'gpu': '8086:041a', | 727 'gpu': '8086:041a', |
| 728 'os': 'Windows-2008ServerR2-SP1' | 728 'os': 'Windows-2008ServerR2-SP1' |
| 729 }, | 729 }, |
| 730 { |
| 731 'gpu': '8086:0412', |
| 732 'os': 'Windows-2008ServerR2-SP1' |
| 733 }, |
| 730 ], | 734 ], |
| 731 }, | 735 }, |
| 732 ], | 736 ], |
| 733 'target_name': 'webgl_conformance', | 737 'target_name': 'webgl_conformance', |
| 734 'extra_browser_args': [ | 738 'extra_browser_args': [ |
| 735 '--use-angle=gl', | 739 '--use-angle=gl', |
| 736 ], | 740 ], |
| 737 }, | 741 }, |
| 738 'webgl_conformance_angle_tests': { | 742 'webgl_conformance_angle_tests': { |
| 739 'tester_configs': [ | 743 'tester_configs': [ |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 955 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 952 fp.write('\n') | 956 fp.write('\n') |
| 953 | 957 |
| 954 def main(): | 958 def main(): |
| 955 generate_all_tests(FYI_WATERFALL, True) | 959 generate_all_tests(FYI_WATERFALL, True) |
| 956 generate_all_tests(WATERFALL, False) | 960 generate_all_tests(WATERFALL, False) |
| 957 return 0 | 961 return 0 |
| 958 | 962 |
| 959 if __name__ == "__main__": | 963 if __name__ == "__main__": |
| 960 sys.exit(main()) | 964 sys.exit(main()) |
| OLD | NEW |