| 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 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1128 { | 1128 { |
| 1129 'fyi_only': True, | 1129 'fyi_only': True, |
| 1130 'os_types': ['win'], | 1130 'os_types': ['win'], |
| 1131 'run_on_optional': True, | 1131 'run_on_optional': True, |
| 1132 } | 1132 } |
| 1133 ], | 1133 ], |
| 1134 'disabled_tester_configs': [ | 1134 'disabled_tester_configs': [ |
| 1135 { | 1135 { |
| 1136 'swarming_dimension_sets': [ | 1136 'swarming_dimension_sets': [ |
| 1137 # crbug.com/555545 and crbug.com/649824: | 1137 # crbug.com/555545 and crbug.com/649824: |
| 1138 # Disable webgl_conformance_gl_tests on older Win/AMD cards. | 1138 # Disable webgl_conformance_gl_tests on some Win/AMD cards. |
| 1139 # (They seem to be running fine on newer cards.) | 1139 # Always fails on older cards, flaky on newer cards. |
| 1140 # Note that these must match the GPUs exactly; wildcard | 1140 # Note that these must match the GPUs exactly; wildcard |
| 1141 # matches (i.e., only device ID) aren't supported! | 1141 # matches (i.e., only device ID) aren't supported! |
| 1142 { | 1142 { |
| 1143 'gpu': '1002:6779', | 1143 'gpu': '1002:6779', |
| 1144 'os': 'Windows-2008ServerR2-SP1' | 1144 'os': 'Windows-2008ServerR2-SP1' |
| 1145 }, | 1145 }, |
| 1146 { |
| 1147 'gpu': '1002:6613', |
| 1148 'os': 'Windows-2008ServerR2-SP1' |
| 1149 }, |
| 1146 # BUG 590951: Disable webgl_conformance_gl_tests on Win/Intel | 1150 # BUG 590951: Disable webgl_conformance_gl_tests on Win/Intel |
| 1147 { | 1151 { |
| 1148 'gpu': '8086:041a', | 1152 'gpu': '8086:041a', |
| 1149 'os': 'Windows-2008ServerR2-SP1' | 1153 'os': 'Windows-2008ServerR2-SP1' |
| 1150 }, | 1154 }, |
| 1151 { | 1155 { |
| 1152 'gpu': '8086:0412', | 1156 'gpu': '8086:0412', |
| 1153 'os': 'Windows-2008ServerR2-SP1' | 1157 'os': 'Windows-2008ServerR2-SP1' |
| 1154 }, | 1158 }, |
| 1155 ], | 1159 ], |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1507 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1511 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1508 fp.write('\n') | 1512 fp.write('\n') |
| 1509 | 1513 |
| 1510 def main(): | 1514 def main(): |
| 1511 generate_all_tests(FYI_WATERFALL, True) | 1515 generate_all_tests(FYI_WATERFALL, True) |
| 1512 generate_all_tests(WATERFALL, False) | 1516 generate_all_tests(WATERFALL, False) |
| 1513 return 0 | 1517 return 0 |
| 1514 | 1518 |
| 1515 if __name__ == "__main__": | 1519 if __name__ == "__main__": |
| 1516 sys.exit(main()) | 1520 sys.exit(main()) |
| OLD | NEW |