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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
303 }, | 303 }, |
304 'Linux Release (NVIDIA)': { | 304 'Linux Release (NVIDIA)': { |
305 'swarming_dimensions': { | 305 'swarming_dimensions': { |
306 'gpu': '10de:104a', | 306 'gpu': '10de:104a', |
307 'os': 'Linux' | 307 'os': 'Linux' |
308 }, | 308 }, |
309 'build_config': 'Release', | 309 'build_config': 'Release', |
310 'swarming': True, | 310 'swarming': True, |
311 'os_type': 'linux', | 311 'os_type': 'linux', |
312 }, | 312 }, |
313 'Linux Release (Intel)': { | 313 'Linux Release (Intel)': { |
Ken Russell (switch to Gerrit)
2016/02/08 21:06:17
This bot doesn't exist any more. Would you file a
| |
314 'swarming_dimensions': { | 314 'swarming_dimensions': { |
315 'gpu': '8086:041a', | 315 'gpu': '8086:041a', |
316 'os': 'Linux' | 316 'os': 'Linux' |
317 }, | 317 }, |
318 'build_config': 'Release', | 318 'build_config': 'Release', |
319 # This bot is a one-off and doesn't have similar slaves in the | 319 # This bot is a one-off and doesn't have similar slaves in the |
320 # swarming pool. | 320 # swarming pool. |
321 'swarming': False, | 321 'swarming': False, |
322 'os_type': 'linux', | 322 'os_type': 'linux', |
323 }, | 323 }, |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
607 { | 607 { |
608 'fyi_only': True, | 608 'fyi_only': True, |
609 'os_types': ['win'] | 609 'os_types': ['win'] |
610 } | 610 } |
611 ], | 611 ], |
612 'target_name': 'webgl_conformance', | 612 'target_name': 'webgl_conformance', |
613 'extra_browser_args': [ | 613 'extra_browser_args': [ |
614 '--use-angle=gl', | 614 '--use-angle=gl', |
615 ], | 615 ], |
616 }, | 616 }, |
617 'webgl_conformance_angle_tests': { | |
618 'tester_configs': [ | |
619 { | |
620 'fyi_only': True, | |
621 'os_types': ['linux'] | |
622 } | |
623 ], | |
624 'target_name': 'webgl_conformance', | |
625 'extra_browser_args': [ | |
626 '--use-gl=angle', | |
627 ], | |
628 }, | |
617 'webgl2_conformance_tests': { | 629 'webgl2_conformance_tests': { |
618 'tester_configs': [ | 630 'tester_configs': [ |
619 { | 631 { |
620 'fyi_only': True, | 632 'fyi_only': True, |
621 'run_on_optional': True, | 633 'run_on_optional': True, |
622 }, | 634 }, |
623 ], | 635 ], |
624 'target_name': 'webgl_conformance', | 636 'target_name': 'webgl_conformance', |
625 'args': [ | 637 'args': [ |
626 '--webgl-conformance-version=2.0.0', | 638 '--webgl-conformance-version=2.0.0', |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
814 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 826 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
815 fp.write('\n') | 827 fp.write('\n') |
816 | 828 |
817 def main(): | 829 def main(): |
818 generate_all_tests(FYI_WATERFALL, True) | 830 generate_all_tests(FYI_WATERFALL, True) |
819 generate_all_tests(WATERFALL, False) | 831 generate_all_tests(WATERFALL, False) |
820 return 0 | 832 return 0 |
821 | 833 |
822 if __name__ == "__main__": | 834 if __name__ == "__main__": |
823 sys.exit(main()) | 835 sys.exit(main()) |
OLD | NEW |