Chromium Code Reviews| 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 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 836 ], | 836 ], |
| 837 } | 837 } |
| 838 ], | 838 ], |
| 839 'swarming': { | 839 'swarming': { |
| 840 'shards': 12, | 840 'shards': 12, |
| 841 }, | 841 }, |
| 842 'test': 'angle_deqp_gles3_tests', | 842 'test': 'angle_deqp_gles3_tests', |
| 843 'args': ['--deqp-egl-display-type=angle-gl'] | 843 'args': ['--deqp-egl-display-type=angle-gl'] |
| 844 }, | 844 }, |
| 845 | 845 |
| 846 'angle_deqp_gles31_gl_tests': { | |
| 847 'tester_configs': [ | |
| 848 { | |
| 849 'fyi_only': True, | |
| 850 'run_on_optional': False, | |
| 851 # Run on the Win/Linux Release NVIDIA bots. | |
| 852 'build_configs': ['Release'], | |
| 853 'swarming_dimension_sets': [ | |
| 854 { | |
| 855 'gpu': '10de:104a', | |
| 856 'os': 'Windows-2008ServerR2-SP1' | |
| 857 }, | |
| 858 { | |
| 859 'gpu': '10de:104a', | |
| 860 'os': 'Linux' | |
| 861 } | |
| 862 ], | |
| 863 } | |
| 864 ], | |
| 865 'swarming': { | |
| 866 'shards': 4, | |
|
Jamie Madill
2016/11/30 18:38:37
There are more tests in the gles31 test set than g
Geoff Lang
2016/12/01 16:22:29
Done.
| |
| 867 }, | |
| 868 'test': 'angle_deqp_gles31_tests', | |
| 869 'args': ['--deqp-egl-display-type=angle-gl'] | |
| 870 }, | |
| 871 | |
| 846 # Until we have more capacity, run angle_end2end_tests only on the | 872 # Until we have more capacity, run angle_end2end_tests only on the |
| 847 # FYI waterfall, the ANGLE trybots (which mirror the FYI waterfall), | 873 # FYI waterfall, the ANGLE trybots (which mirror the FYI waterfall), |
| 848 # and the optional trybots (mainly used during ANGLE rolls). | 874 # and the optional trybots (mainly used during ANGLE rolls). |
| 849 'angle_end2end_tests': { | 875 'angle_end2end_tests': { |
| 850 'tester_configs': [ | 876 'tester_configs': [ |
| 851 { | 877 { |
| 852 'allow_on_android': True, | 878 'allow_on_android': True, |
| 853 'fyi_only': True, | 879 'fyi_only': True, |
| 854 'run_on_optional': True, | 880 'run_on_optional': True, |
| 855 }, | 881 }, |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1499 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1525 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1500 fp.write('\n') | 1526 fp.write('\n') |
| 1501 | 1527 |
| 1502 def main(): | 1528 def main(): |
| 1503 generate_all_tests(FYI_WATERFALL, True) | 1529 generate_all_tests(FYI_WATERFALL, True) |
| 1504 generate_all_tests(WATERFALL, False) | 1530 generate_all_tests(WATERFALL, False) |
| 1505 return 0 | 1531 return 0 |
| 1506 | 1532 |
| 1507 if __name__ == "__main__": | 1533 if __name__ == "__main__": |
| 1508 sys.exit(main()) | 1534 sys.exit(main()) |
| OLD | NEW |