Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(713)

Side by Side Diff: content/test/gpu/generate_buildbot_json.py

Issue 2494633002: Stop running webgl_conformance_gl_tests on old Win AMD card. (Closed)
Patch Set: Rebased. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.fyi.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 'tester_configs': [ 1127 'tester_configs': [
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 # BUG 555545: Disable webgl_conformance_gl_tests on Win/AMD 1137 # crbug.com/555545 and crbug.com/649824:
1138 # Disable webgl_conformance_gl_tests on older Win/AMD cards.
1139 # (They seem to be running fine on newer cards.)
1140 # Note that these must match the GPUs exactly; wildcard
1141 # matches (i.e., only device ID) aren't supported!
1138 { 1142 {
1139 # TODO(kbr): add device PCI ID 6613 once deployed 1143 'gpu': '1002:6779',
1140 # http://crbug.com/639353
1141 'gpu': '1002',
1142 'os': 'Windows-2008ServerR2-SP1' 1144 'os': 'Windows-2008ServerR2-SP1'
1143 }, 1145 },
1144 # BUG 590951: Disable webgl_conformance_gl_tests on Win/Intel 1146 # BUG 590951: Disable webgl_conformance_gl_tests on Win/Intel
1145 { 1147 {
1146 'gpu': '8086:041a', 1148 'gpu': '8086:041a',
1147 'os': 'Windows-2008ServerR2-SP1' 1149 'os': 'Windows-2008ServerR2-SP1'
1148 }, 1150 },
1149 { 1151 {
1150 'gpu': '8086:0412', 1152 'gpu': '8086:0412',
1151 'os': 'Windows-2008ServerR2-SP1' 1153 'os': 'Windows-2008ServerR2-SP1'
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1505 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) 1507 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True)
1506 fp.write('\n') 1508 fp.write('\n')
1507 1509
1508 def main(): 1510 def main():
1509 generate_all_tests(FYI_WATERFALL, True) 1511 generate_all_tests(FYI_WATERFALL, True)
1510 generate_all_tests(WATERFALL, False) 1512 generate_all_tests(WATERFALL, False)
1511 return 0 1513 return 0
1512 1514
1513 if __name__ == "__main__": 1515 if __name__ == "__main__":
1514 sys.exit(main()) 1516 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | testing/buildbot/chromium.gpu.fyi.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698