| 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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 'webgl_conformance_gl_tests': { | 614 'webgl_conformance_gl_tests': { |
| 615 'tester_configs': [ | 615 'tester_configs': [ |
| 616 { | 616 { |
| 617 'fyi_only': True, | 617 'fyi_only': True, |
| 618 'run_on_optional': True, | 618 'run_on_optional': True, |
| 619 'os_types': ['win'] | 619 'os_types': ['win'] |
| 620 } | 620 } |
| 621 ], | 621 ], |
| 622 'disabled_tester_configs': [ | 622 'disabled_tester_configs': [ |
| 623 { | 623 { |
| 624 # BUG 555545: Disable webgl_conformance_gl_tests on Win/AMD | |
| 625 'swarming_dimension_sets': [ | 624 'swarming_dimension_sets': [ |
| 625 # BUG 555545: Disable webgl_conformance_gl_tests on Win/AMD |
| 626 { | 626 { |
| 627 'gpu': '1002:6779', | 627 'gpu': '1002:6779', |
| 628 'os': 'Windows-2008ServerR2-SP1' | 628 'os': 'Windows-2008ServerR2-SP1' |
| 629 }, | 629 }, |
| 630 # BUG 590951: Disable webgl_conformance_gl_tests on Win/Intel |
| 631 { |
| 632 'gpu': '8086:041a', |
| 633 'os': 'Windows-2008ServerR2-SP1' |
| 634 }, |
| 630 ], | 635 ], |
| 631 }, | 636 }, |
| 632 ], | 637 ], |
| 633 'target_name': 'webgl_conformance', | 638 'target_name': 'webgl_conformance', |
| 634 'extra_browser_args': [ | 639 'extra_browser_args': [ |
| 635 '--use-angle=gl', | 640 '--use-angle=gl', |
| 636 ], | 641 ], |
| 637 }, | 642 }, |
| 638 'webgl_conformance_angle_tests': { | 643 'webgl_conformance_angle_tests': { |
| 639 'tester_configs': [ | 644 'tester_configs': [ |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 857 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 853 fp.write('\n') | 858 fp.write('\n') |
| 854 | 859 |
| 855 def main(): | 860 def main(): |
| 856 generate_all_tests(FYI_WATERFALL, True) | 861 generate_all_tests(FYI_WATERFALL, True) |
| 857 generate_all_tests(WATERFALL, False) | 862 generate_all_tests(WATERFALL, False) |
| 858 return 0 | 863 return 0 |
| 859 | 864 |
| 860 if __name__ == "__main__": | 865 if __name__ == "__main__": |
| 861 sys.exit(main()) | 866 sys.exit(main()) |
| OLD | NEW |