| 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 1492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1503 'test': 'video_decode_accelerator_unittest', | 1503 'test': 'video_decode_accelerator_unittest', |
| 1504 }, | 1504 }, |
| 1505 'video_decode_accelerator_gl_unittest': { | 1505 'video_decode_accelerator_gl_unittest': { |
| 1506 'tester_configs': [ | 1506 'tester_configs': [ |
| 1507 { | 1507 { |
| 1508 # Run this on the FYI waterfall and optional tryservers. | 1508 # Run this on the FYI waterfall and optional tryservers. |
| 1509 'predicate': Predicates.FYI_ONLY, | 1509 'predicate': Predicates.FYI_ONLY, |
| 1510 'os_types': ['win'] | 1510 'os_types': ['win'] |
| 1511 }, | 1511 }, |
| 1512 ], | 1512 ], |
| 1513 # Windows Intel doesn't have the GL extensions to support this test |
| 1514 'disabled_tester_configs': [ |
| 1515 { |
| 1516 'names': [ |
| 1517 'Win10 Debug (Intel HD 530)', |
| 1518 'Win10 Release (Intel HD 530)', |
| 1519 ], |
| 1520 }, |
| 1521 ], |
| 1513 'args': [ | 1522 'args': [ |
| 1514 '--use-angle=gl', | 1523 '--use-angle=gl', |
| 1515 '--use-test-data-path', | 1524 '--use-test-data-path', |
| 1516 '--test_video_data=test-25fps.h264:320:240:250:258:::1', | 1525 '--test_video_data=test-25fps.h264:320:240:250:258:::1', |
| 1517 ], | 1526 ], |
| 1518 'test': 'video_decode_accelerator_unittest', | 1527 'test': 'video_decode_accelerator_unittest', |
| 1519 }, | 1528 }, |
| 1520 } | 1529 } |
| 1521 | 1530 |
| 1522 # This requires a hack because the isolate's name is different than | 1531 # This requires a hack because the isolate's name is different than |
| (...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2368 install_parent_links(WATERFALL) | 2377 install_parent_links(WATERFALL) |
| 2369 install_parent_links(V8_FYI_WATERFALL) | 2378 install_parent_links(V8_FYI_WATERFALL) |
| 2370 | 2379 |
| 2371 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 2380 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
| 2372 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 2381 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
| 2373 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 2382 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
| 2374 return 0 | 2383 return 0 |
| 2375 | 2384 |
| 2376 if __name__ == "__main__": | 2385 if __name__ == "__main__": |
| 2377 sys.exit(main()) | 2386 sys.exit(main()) |
| OLD | NEW |