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 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1418 'args': [ | 1418 'args': [ |
1419 '--gtest_filter=*Detection*', | 1419 '--gtest_filter=*Detection*', |
1420 '--use-gpu-in-tests' | 1420 '--use-gpu-in-tests' |
1421 ] | 1421 ] |
1422 }, | 1422 }, |
1423 'swiftshader_unittests': { | 1423 'swiftshader_unittests': { |
1424 'tester_configs': [ | 1424 'tester_configs': [ |
1425 { | 1425 { |
1426 # Run this on the FYI waterfall and optional tryservers. | 1426 # Run this on the FYI waterfall and optional tryservers. |
1427 'predicate': Predicates.FYI_AND_OPTIONAL, | 1427 'predicate': Predicates.FYI_AND_OPTIONAL, |
1428 'os_types': ['win', 'linux'], | 1428 'os_types': ['win', 'linux', 'mac'], |
1429 }, | 1429 }, |
1430 ], | 1430 ], |
1431 'disabled_tester_configs': [ | 1431 'disabled_tester_configs': [ |
1432 { | 1432 { |
1433 'names': [ | 1433 'names': [ |
1434 'Linux ChromiumOS Ozone (Intel)', | 1434 'Linux ChromiumOS Ozone (Intel)', |
1435 ], | 1435 ], |
1436 }, | 1436 }, |
1437 ], | 1437 ], |
1438 }, | 1438 }, |
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2325 install_parent_links(WATERFALL) | 2325 install_parent_links(WATERFALL) |
2326 install_parent_links(V8_FYI_WATERFALL) | 2326 install_parent_links(V8_FYI_WATERFALL) |
2327 | 2327 |
2328 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 2328 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
2329 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 2329 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
2330 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 2330 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
2331 return 0 | 2331 return 0 |
2332 | 2332 |
2333 if __name__ == "__main__": | 2333 if __name__ == "__main__": |
2334 sys.exit(main()) | 2334 sys.exit(main()) |
OLD | NEW |