| 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 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 'fyi_only': True, | 913 'fyi_only': True, |
| 914 'run_on_optional': True, | 914 'run_on_optional': True, |
| 915 }, | 915 }, |
| 916 ], | 916 ], |
| 917 'disabled_tester_configs': [ | 917 'disabled_tester_configs': [ |
| 918 { | 918 { |
| 919 'names': [ | 919 'names': [ |
| 920 # http://crbug.com/599451: this test is currently too slow | 920 # http://crbug.com/599451: this test is currently too slow |
| 921 # to run on x64 in Debug mode. Need to shard the tests. | 921 # to run on x64 in Debug mode. Need to shard the tests. |
| 922 'Win7 x64 Debug (NVIDIA)', | 922 'Win7 x64 Debug (NVIDIA)', |
| 923 # http://crbug.com/540543: Linux Intel driver is GL 3.0 and | |
| 924 # doesn't support features needed for ES3 | |
| 925 'Linux Release (New Intel)', | |
| 926 'Linux Debug (New Intel)', | |
| 927 ], | 923 ], |
| 928 }, | 924 }, |
| 929 ], | 925 ], |
| 930 'target_name': 'webgl_conformance', | 926 'target_name': 'webgl_conformance', |
| 931 'args': [ | 927 'args': [ |
| 932 '--webgl-conformance-version=2.0.0', | 928 '--webgl-conformance-version=2.0.0', |
| 933 '--webgl2-only=true', | 929 '--webgl2-only=true', |
| 934 # The current working directory when run via isolate is | 930 # The current working directory when run via isolate is |
| 935 # out/Debug or out/Release. Reference this file relatively to | 931 # out/Debug or out/Release. Reference this file relatively to |
| 936 # it. | 932 # it. |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1207 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1203 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1208 fp.write('\n') | 1204 fp.write('\n') |
| 1209 | 1205 |
| 1210 def main(): | 1206 def main(): |
| 1211 generate_all_tests(FYI_WATERFALL, True) | 1207 generate_all_tests(FYI_WATERFALL, True) |
| 1212 generate_all_tests(WATERFALL, False) | 1208 generate_all_tests(WATERFALL, False) |
| 1213 return 0 | 1209 return 0 |
| 1214 | 1210 |
| 1215 if __name__ == "__main__": | 1211 if __name__ == "__main__": |
| 1216 sys.exit(main()) | 1212 sys.exit(main()) |
| OLD | NEW |