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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
702 'os': 'Windows-2008ServerR2-SP1' | 702 'os': 'Windows-2008ServerR2-SP1' |
703 } | 703 } |
704 ], | 704 ], |
705 }, | 705 }, |
706 ], | 706 ], |
707 }, | 707 }, |
708 | 708 |
709 'angle_deqp_gles2_tests': { | 709 'angle_deqp_gles2_tests': { |
710 'tester_configs': [ | 710 'tester_configs': [ |
711 { | 711 { |
712 'allow_on_android': True, | |
713 'fyi_only': True, | 712 'fyi_only': True, |
714 # Run this on the optional tryservers. | 713 # Run this on the optional tryservers. |
715 'run_on_optional': True, | 714 'run_on_optional': True, |
716 # Run only on the Win7 and Linux Release NVIDIA 32- and 64-bit bots | 715 # Run only on the Win7 and Linux Release NVIDIA 32- and 64-bit bots |
717 # (and trybots) for the time being, at least until more capacity is | 716 # (and trybots) for the time being, at least until more capacity is |
718 # added. Also run on the AMD R7 240 bots. | 717 # added. Also run on the AMD R7 240 bots. |
719 # Also run on Nexus 5X swarmed bots. | 718 # Also run on Nexus 5X swarmed bots. |
720 'build_configs': ['Release', 'Release_x64', 'android-chromium'], | 719 'build_configs': ['Release', 'Release_x64', 'android-chromium'], |
721 'swarming_dimension_sets': [ | 720 'swarming_dimension_sets': [ |
722 { | 721 { |
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1408 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1407 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
1409 fp.write('\n') | 1408 fp.write('\n') |
1410 | 1409 |
1411 def main(): | 1410 def main(): |
1412 generate_all_tests(FYI_WATERFALL, True) | 1411 generate_all_tests(FYI_WATERFALL, True) |
1413 generate_all_tests(WATERFALL, False) | 1412 generate_all_tests(WATERFALL, False) |
1414 return 0 | 1413 return 0 |
1415 | 1414 |
1416 if __name__ == "__main__": | 1415 if __name__ == "__main__": |
1417 sys.exit(main()) | 1416 sys.exit(main()) |
OLD | NEW |