| 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 1601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1612 '${gpu_vendor_id}', | 1612 '${gpu_vendor_id}', |
| 1613 '--expected-device-id', | 1613 '--expected-device-id', |
| 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': [ |
| 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': [ |
| 1627 'Mac GPU ASAN Release', |
| 1628 ], |
| 1629 }, |
| 1630 ], |
| 1622 }, | 1631 }, |
| 1623 'maps_pixel_test': { | 1632 'maps_pixel_test': { |
| 1624 'target_name': 'maps', | 1633 'target_name': 'maps', |
| 1625 'args': [ | 1634 'args': [ |
| 1626 '--os-type', | 1635 '--os-type', |
| 1627 '${os_type}', | 1636 '${os_type}', |
| 1628 '--build-revision', | 1637 '--build-revision', |
| 1629 '${got_revision}', | 1638 '${got_revision}', |
| 1630 '--test-machine-name', | 1639 '--test-machine-name', |
| 1631 '${buildername}', | 1640 '${buildername}', |
| (...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2342 install_parent_links(WATERFALL) | 2351 install_parent_links(WATERFALL) |
| 2343 install_parent_links(V8_FYI_WATERFALL) | 2352 install_parent_links(V8_FYI_WATERFALL) |
| 2344 | 2353 |
| 2345 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') | 2354 generate_all_tests(FYI_WATERFALL, 'chromium.gpu.fyi.json') |
| 2346 generate_all_tests(WATERFALL, 'chromium.gpu.json') | 2355 generate_all_tests(WATERFALL, 'chromium.gpu.json') |
| 2347 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') | 2356 generate_all_tests(V8_FYI_WATERFALL, 'client.v8.fyi.json') |
| 2348 return 0 | 2357 return 0 |
| 2349 | 2358 |
| 2350 if __name__ == "__main__": | 2359 if __name__ == "__main__": |
| 2351 sys.exit(main()) | 2360 sys.exit(main()) |
| OLD | NEW |