| 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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 976 'run_on_optional': True, | 976 'run_on_optional': True, |
| 977 }, | 977 }, |
| 978 ], | 978 ], |
| 979 'disabled_tester_configs': [ | 979 'disabled_tester_configs': [ |
| 980 { | 980 { |
| 981 'names': [ | 981 'names': [ |
| 982 # TODO(ynovikov) Investigate why the test breaks on older devices. | 982 # TODO(ynovikov) Investigate why the test breaks on older devices. |
| 983 'Android Release (Nexus 5)', | 983 'Android Release (Nexus 5)', |
| 984 'Android Release (Nexus 6)', | 984 'Android Release (Nexus 6)', |
| 985 'Android Release (Nexus 9)', | 985 'Android Release (Nexus 9)', |
| 986 |
| 987 # These tests are flaky on old AMD. |
| 988 # TODO(jmadill): Enably flaky test retries only on this config. |
| 989 'Win7 Release (AMD R5 230)', |
| 986 ], | 990 ], |
| 987 }, | 991 }, |
| 988 ], | 992 ], |
| 989 'desktop_args': [ | 993 'desktop_args': [ |
| 990 '--use-gpu-in-tests', | 994 '--use-gpu-in-tests', |
| 991 # ANGLE test retries deliberately disabled to prevent flakiness. | 995 # ANGLE test retries deliberately disabled to prevent flakiness. |
| 992 # http://crbug.com/669196 | 996 # http://crbug.com/669196 |
| 993 '--test-launcher-retry-limit=0' | 997 '--test-launcher-retry-limit=0' |
| 994 ] | 998 ] |
| 995 }, | 999 }, |
| (...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1659 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1663 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 1660 fp.write('\n') | 1664 fp.write('\n') |
| 1661 | 1665 |
| 1662 def main(): | 1666 def main(): |
| 1663 generate_all_tests(FYI_WATERFALL, True) | 1667 generate_all_tests(FYI_WATERFALL, True) |
| 1664 generate_all_tests(WATERFALL, False) | 1668 generate_all_tests(WATERFALL, False) |
| 1665 return 0 | 1669 return 0 |
| 1666 | 1670 |
| 1667 if __name__ == "__main__": | 1671 if __name__ == "__main__": |
| 1668 sys.exit(main()) | 1672 sys.exit(main()) |
| OLD | NEW |