| 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 926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 937 'fyi_only': True, | 937 'fyi_only': True, |
| 938 'run_on_optional': True, | 938 'run_on_optional': True, |
| 939 }, | 939 }, |
| 940 ], | 940 ], |
| 941 'disabled_tester_configs': [ | 941 'disabled_tester_configs': [ |
| 942 { | 942 { |
| 943 'names': [ | 943 'names': [ |
| 944 # http://crbug.com/599451: this test is currently too slow | 944 # http://crbug.com/599451: this test is currently too slow |
| 945 # to run on x64 in Debug mode. Need to shard the tests. | 945 # to run on x64 in Debug mode. Need to shard the tests. |
| 946 'Win7 x64 Debug (NVIDIA)', | 946 'Win7 x64 Debug (NVIDIA)', |
| 947 # http://crbug.com/637081: the Mac Minis are badly | |
| 948 # oversubscribed right now. Save some time by stopping | |
| 949 # running the WebGL 2.0 conformance tests on this | |
| 950 # configuration temporarily, until more capacity comes | |
| 951 # online (http://crbug.com/636472). | |
| 952 'Mac 10.10 Release (Intel)', | |
| 953 'Optional Mac 10.10 Release (Intel)', | |
| 954 ], | 947 ], |
| 955 }, | 948 }, |
| 956 ], | 949 ], |
| 957 'target_name': 'webgl_conformance', | 950 'target_name': 'webgl_conformance', |
| 958 'args': [ | 951 'args': [ |
| 959 '--webgl-conformance-version=2.0.0', | 952 '--webgl-conformance-version=2.0.0', |
| 960 # The current working directory when run via isolate is | 953 # The current working directory when run via isolate is |
| 961 # out/Debug or out/Release. Reference this file relatively to | 954 # out/Debug or out/Release. Reference this file relatively to |
| 962 # it. | 955 # it. |
| 963 '--read-abbreviated-json-results-from=' + \ | 956 '--read-abbreviated-json-results-from=' + \ |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1251 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1259 fp.write('\n') | 1252 fp.write('\n') |
| 1260 | 1253 |
| 1261 def main(): | 1254 def main(): |
| 1262 generate_all_tests(FYI_WATERFALL, True) | 1255 generate_all_tests(FYI_WATERFALL, True) |
| 1263 generate_all_tests(WATERFALL, False) | 1256 generate_all_tests(WATERFALL, False) |
| 1264 return 0 | 1257 return 0 |
| 1265 | 1258 |
| 1266 if __name__ == "__main__": | 1259 if __name__ == "__main__": |
| 1267 sys.exit(main()) | 1260 sys.exit(main()) |
| OLD | NEW |