| 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 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 '--disable-gpu-sandbox', | 1104 '--disable-gpu-sandbox', |
| 1105 ], | 1105 ], |
| 1106 'test': 'gles2_conform_test', | 1106 'test': 'gles2_conform_test', |
| 1107 }, | 1107 }, |
| 1108 'swiftshader_unittests': { | 1108 'swiftshader_unittests': { |
| 1109 'tester_configs': [ | 1109 'tester_configs': [ |
| 1110 { | 1110 { |
| 1111 'fyi_only': True, | 1111 'fyi_only': True, |
| 1112 # Run this on the optional tryservers. | 1112 # Run this on the optional tryservers. |
| 1113 'run_on_optional': True, | 1113 'run_on_optional': True, |
| 1114 'os_types': ['win', 'linux'], |
| 1114 }, | 1115 }, |
| 1115 ], | 1116 ], |
| 1116 }, | 1117 }, |
| 1117 'tab_capture_end2end_tests': { | 1118 'tab_capture_end2end_tests': { |
| 1118 'tester_configs': [ | 1119 'tester_configs': [ |
| 1119 { | 1120 { |
| 1120 'build_configs': ['Release', 'Release_x64'], | 1121 'build_configs': ['Release', 'Release_x64'], |
| 1121 } | 1122 } |
| 1122 ], | 1123 ], |
| 1123 'override_compile_targets': [ | 1124 'override_compile_targets': [ |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1719 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1720 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1720 fp.write('\n') | 1721 fp.write('\n') |
| 1721 | 1722 |
| 1722 def main(): | 1723 def main(): |
| 1723 generate_all_tests(FYI_WATERFALL, True) | 1724 generate_all_tests(FYI_WATERFALL, True) |
| 1724 generate_all_tests(WATERFALL, False) | 1725 generate_all_tests(WATERFALL, False) |
| 1725 return 0 | 1726 return 0 |
| 1726 | 1727 |
| 1727 if __name__ == "__main__": | 1728 if __name__ == "__main__": |
| 1728 sys.exit(main()) | 1729 sys.exit(main()) |
| OLD | NEW |