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 1603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1614 '${gpu_device_id}', | 1614 '${gpu_device_id}', |
1615 ], | 1615 ], |
1616 'tester_configs': [ | 1616 'tester_configs': [ |
1617 { | 1617 { |
1618 'predicate': Predicates.DEFAULT_AND_OPTIONAL, | 1618 'predicate': Predicates.DEFAULT_AND_OPTIONAL, |
1619 'disabled_instrumentation_types': ['tsan'], | 1619 'disabled_instrumentation_types': ['tsan'], |
1620 } | 1620 } |
1621 ], | 1621 ], |
1622 'disabled_tester_configs': [ | 1622 'disabled_tester_configs': [ |
1623 { | 1623 { |
1624 # The Mac ASAN swarming runs on two different GPU types so we can't | |
1625 # have one expected vendor ID / device ID | |
1626 'names': [ | 1624 'names': [ |
| 1625 'Linux ChromiumOS Ozone (Intel)', |
| 1626 |
| 1627 # The Mac ASAN swarming runs on two different GPU types so we can't |
| 1628 # have one expected vendor ID / device ID |
1627 'Mac GPU ASAN Release', | 1629 'Mac GPU ASAN Release', |
1628 ], | 1630 ], |
1629 }, | 1631 }, |
1630 ], | 1632 ], |
1631 }, | 1633 }, |
1632 'maps_pixel_test': { | 1634 'maps_pixel_test': { |
1633 'target_name': 'maps', | 1635 'target_name': 'maps', |
1634 'args': [ | 1636 'args': [ |
1635 '--os-type', | 1637 '--os-type', |
1636 '${os_type}', | 1638 '${os_type}', |
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2356 install_parent_links(WATERFALL) | 2358 install_parent_links(WATERFALL) |
2357 install_parent_links(V8_FYI_WATERFALL) | 2359 install_parent_links(V8_FYI_WATERFALL) |
2358 | 2360 |
2359 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 2361 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
2360 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 2362 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
2361 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 2363 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
2362 return 0 | 2364 return 0 |
2363 | 2365 |
2364 if __name__ == "__main__": | 2366 if __name__ == "__main__": |
2365 sys.exit(main()) | 2367 sys.exit(main()) |
OLD | NEW |