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 ] |
| 1272 }, |
1261 'swiftshader_unittests': { | 1273 'swiftshader_unittests': { |
1262 'tester_configs': [ | 1274 'tester_configs': [ |
1263 { | 1275 { |
1264 # Run this on the FYI waterfall and optional tryservers. | 1276 # Run this on the FYI waterfall and optional tryservers. |
1265 'predicate': Predicates.FYI_AND_OPTIONAL, | 1277 'predicate': Predicates.FYI_AND_OPTIONAL, |
1266 'os_types': ['win', 'linux'], | 1278 'os_types': ['win', 'linux'], |
1267 }, | 1279 }, |
1268 ], | 1280 ], |
1269 }, | 1281 }, |
1270 'tab_capture_end2end_tests': { | 1282 'tab_capture_end2end_tests': { |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1917 install_parent_links(WATERFALL) | 1929 install_parent_links(WATERFALL) |
1918 install_parent_links(V8_FYI_WATERFALL) | 1930 install_parent_links(V8_FYI_WATERFALL) |
1919 | 1931 |
1920 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 1932 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
1921 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 1933 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
1922 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 1934 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
1923 return 0 | 1935 return 0 |
1924 | 1936 |
1925 if __name__ == "__main__": | 1937 if __name__ == "__main__": |
1926 sys.exit(main()) | 1938 sys.exit(main()) |
OLD | NEW |