| 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 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1251 'os_types': ['win'], | 1251 'os_types': ['win'], |
| 1252 } | 1252 } |
| 1253 ], | 1253 ], |
| 1254 'args': [ | 1254 'args': [ |
| 1255 '--use-gpu-in-tests', | 1255 '--use-gpu-in-tests', |
| 1256 '--use-angle=gl', | 1256 '--use-angle=gl', |
| 1257 '--disable-gpu-sandbox', | 1257 '--disable-gpu-sandbox', |
| 1258 ], | 1258 ], |
| 1259 'test': 'gles2_conform_test', | 1259 'test': 'gles2_conform_test', |
| 1260 }, | 1260 }, |
| 1261 'service_unittests': { |
| 1262 'tester_configs': [ |
| 1263 { |
| 1264 # Run this on the FYI waterfall and optional tryservers. |
| 1265 'predicate': Predicates.FYI_AND_OPTIONAL, |
| 1266 'os_types': ['mac'], |
| 1267 }, |
| 1268 ], |
| 1269 'args': [ |
| 1270 '--gtest_filter=*Detection*', |
| 1271 '--use-gpu-in-tests' |
| 1272 ] |
| 1273 }, |
| 1261 'swiftshader_unittests': { | 1274 'swiftshader_unittests': { |
| 1262 'tester_configs': [ | 1275 'tester_configs': [ |
| 1263 { | 1276 { |
| 1264 # Run this on the FYI waterfall and optional tryservers. | 1277 # Run this on the FYI waterfall and optional tryservers. |
| 1265 'predicate': Predicates.FYI_AND_OPTIONAL, | 1278 'predicate': Predicates.FYI_AND_OPTIONAL, |
| 1266 'os_types': ['win', 'linux'], | 1279 'os_types': ['win', 'linux'], |
| 1267 }, | 1280 }, |
| 1268 ], | 1281 ], |
| 1269 }, | 1282 }, |
| 1270 'tab_capture_end2end_tests': { | 1283 'tab_capture_end2end_tests': { |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1917 install_parent_links(WATERFALL) | 1930 install_parent_links(WATERFALL) |
| 1918 install_parent_links(V8_FYI_WATERFALL) | 1931 install_parent_links(V8_FYI_WATERFALL) |
| 1919 | 1932 |
| 1920 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 1933 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
| 1921 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 1934 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
| 1922 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 1935 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
| 1923 return 0 | 1936 return 0 |
| 1924 | 1937 |
| 1925 if __name__ == "__main__": | 1938 if __name__ == "__main__": |
| 1926 sys.exit(main()) | 1939 sys.exit(main()) |
| OLD | NEW |