| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 }, | 582 }, |
| 583 | 583 |
| 584 'angle_deqp_gles2_tests': { | 584 'angle_deqp_gles2_tests': { |
| 585 'tester_configs': [ | 585 'tester_configs': [ |
| 586 { | 586 { |
| 587 'fyi_only': True, | 587 'fyi_only': True, |
| 588 # Run this on the optional tryservers. | 588 # Run this on the optional tryservers. |
| 589 'run_on_optional': True, | 589 'run_on_optional': True, |
| 590 # Run only on the Win7 and Linux Release NVIDIA 32- and 64-bit bots | 590 # Run only on the Win7 and Linux Release NVIDIA 32- and 64-bit bots |
| 591 # (and trybots) for the time being, at least until more capacity is | 591 # (and trybots) for the time being, at least until more capacity is |
| 592 # added. | 592 # added. Also run on the AMD R7 240 bots. |
| 593 'build_configs': ['Release', 'Release_x64'], | 593 'build_configs': ['Release', 'Release_x64'], |
| 594 'swarming_dimension_sets': [ | 594 'swarming_dimension_sets': [ |
| 595 { | 595 { |
| 596 'gpu': '10de:104a', | 596 'gpu': '10de:104a', |
| 597 'os': 'Windows-2008ServerR2-SP1' | 597 'os': 'Windows-2008ServerR2-SP1' |
| 598 }, | 598 }, |
| 599 { | 599 { |
| 600 'gpu': '1002:6613', |
| 601 'os': 'Windows-2008ServerR2-SP1' |
| 602 }, |
| 603 { |
| 600 'gpu': '10de:104a', | 604 'gpu': '10de:104a', |
| 601 'os': 'Linux' | 605 'os': 'Linux' |
| 602 } | 606 } |
| 603 ], | 607 ], |
| 604 }, | 608 }, |
| 605 ], | 609 ], |
| 606 'swarming': { | 610 'swarming': { |
| 607 'shards': 4, | 611 'shards': 4, |
| 608 } | 612 } |
| 609 }, | 613 }, |
| 610 | 614 |
| 611 'angle_deqp_gles3_tests': { | 615 'angle_deqp_gles3_tests': { |
| 612 'tester_configs': [ | 616 'tester_configs': [ |
| 613 { | 617 { |
| 614 'fyi_only': True, | 618 'fyi_only': True, |
| 615 # TODO(jmadill): Run this on the optional tryservers. | 619 # TODO(jmadill): Run this on the optional tryservers. |
| 616 'run_on_optional': False, | 620 'run_on_optional': False, |
| 617 # Run only on the Win7 and Linux Release NVIDIA 32-bit bots | 621 # Run only on the Win7 and Linux Release NVIDIA 32-bit bots |
| 618 # (and trybots) for the time being, at least until more capacity is | 622 # (and trybots) for the time being, at least until more capacity is |
| 619 # added. | 623 # added. |
| 624 # TODO(jmadill): Run on the Win AMD R7 240 bots once they are swarmed. |
| 620 'build_configs': ['Release'], | 625 'build_configs': ['Release'], |
| 621 'swarming_dimension_sets': [ | 626 'swarming_dimension_sets': [ |
| 622 { | 627 { |
| 623 'gpu': '10de:104a', | 628 'gpu': '10de:104a', |
| 624 'os': 'Windows-2008ServerR2-SP1' | 629 'os': 'Windows-2008ServerR2-SP1' |
| 625 }, | 630 }, |
| 626 { | 631 { |
| 627 'gpu': '10de:104a', | 632 'gpu': '10de:104a', |
| 628 'os': 'Linux' | 633 'os': 'Linux' |
| 629 } | 634 } |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1262 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1267 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1263 fp.write('\n') | 1268 fp.write('\n') |
| 1264 | 1269 |
| 1265 def main(): | 1270 def main(): |
| 1266 generate_all_tests(FYI_WATERFALL, True) | 1271 generate_all_tests(FYI_WATERFALL, True) |
| 1267 generate_all_tests(WATERFALL, False) | 1272 generate_all_tests(WATERFALL, False) |
| 1268 return 0 | 1273 return 0 |
| 1269 | 1274 |
| 1270 if __name__ == "__main__": | 1275 if __name__ == "__main__": |
| 1271 sys.exit(main()) | 1276 sys.exit(main()) |
| OLD | NEW |