| 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 'os': 'Linux' | 409 'os': 'Linux' |
| 410 }, | 410 }, |
| 411 'build_config': 'Release', | 411 'build_config': 'Release', |
| 412 'swarming': True, | 412 'swarming': True, |
| 413 'os_type': 'linux', | 413 'os_type': 'linux', |
| 414 }, | 414 }, |
| 415 } | 415 } |
| 416 } | 416 } |
| 417 | 417 |
| 418 COMMON_GTESTS = { | 418 COMMON_GTESTS = { |
| 419 'angle_deqp_egl_tests': { |
| 420 'tester_configs': [ |
| 421 { |
| 422 'fyi_only': True, |
| 423 # Run this on the optional tryservers. |
| 424 'run_on_optional': True, |
| 425 # Run only on the Win7 Release NVIDIA 32- and 64-bit bots |
| 426 # (and trybots) for the time being, at least until more capacity is |
| 427 # added. |
| 428 # TODO(jmadill): Run on the Linux Release NVIDIA bots. |
| 429 'build_configs': ['Release', 'Release_x64'], |
| 430 'swarming_dimension_sets': [ |
| 431 { |
| 432 'gpu': '10de:104a', |
| 433 'os': 'Windows-2008ServerR2-SP1' |
| 434 } |
| 435 ], |
| 436 }, |
| 437 ], |
| 438 }, |
| 439 |
| 419 'angle_deqp_gles2_tests': { | 440 'angle_deqp_gles2_tests': { |
| 420 'tester_configs': [ | 441 'tester_configs': [ |
| 421 { | 442 { |
| 422 'fyi_only': True, | 443 'fyi_only': True, |
| 423 # Run this on the optional tryservers. | 444 # Run this on the optional tryservers. |
| 424 'run_on_optional': True, | 445 'run_on_optional': True, |
| 425 # Run only on the Win7 and Linux Release NVIDIA 32- and 64-bit bots | 446 # Run only on the Win7 and Linux Release NVIDIA 32- and 64-bit bots |
| 426 # (and trybots) for the time being, at least until more capacity is | 447 # (and trybots) for the time being, at least until more capacity is |
| 427 # added. | 448 # added. |
| 428 'build_configs': ['Release', 'Release_x64'], | 449 'build_configs': ['Release', 'Release_x64'], |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 883 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
| 863 fp.write('\n') | 884 fp.write('\n') |
| 864 | 885 |
| 865 def main(): | 886 def main(): |
| 866 generate_all_tests(FYI_WATERFALL, True) | 887 generate_all_tests(FYI_WATERFALL, True) |
| 867 generate_all_tests(WATERFALL, False) | 888 generate_all_tests(WATERFALL, False) |
| 868 return 0 | 889 return 0 |
| 869 | 890 |
| 870 if __name__ == "__main__": | 891 if __name__ == "__main__": |
| 871 sys.exit(main()) | 892 sys.exit(main()) |
| OLD | NEW |