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.perf.json and chromium.perf.fyi.json in | 6 """Script to generate chromium.perf.json and chromium.perf.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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 waterfall = add_tester( | 321 waterfall = add_tester( |
322 waterfall, 'Win 7 Intel GPU Perf', | 322 waterfall, 'Win 7 Intel GPU Perf', |
323 'chromium-rel-win7-gpu-intel', 'win', | 323 'chromium-rel-win7-gpu-intel', 'win', |
324 swarming=[ | 324 swarming=[ |
325 { | 325 { |
326 'gpu': '8086:041a', | 326 'gpu': '8086:041a', |
327 'os': 'Windows-2008ServerR2-SP1', | 327 'os': 'Windows-2008ServerR2-SP1', |
328 'device_ids': [ | 328 'device_ids': [ |
329 'build164-m1', 'build165-m1', | 329 'build164-m1', 'build165-m1', |
330 'build166-m1', 'build167-m1', 'build168-m1' | 330 'build166-m1', 'build167-m1', 'build168-m1' |
331 ] | 331 ], |
| 332 'perf_tests': [ |
| 333 ('angle_perftests', 2), |
| 334 ('load_library_perf_tests', 2), |
| 335 ('performance_browser_tests', 2)] |
332 } | 336 } |
333 ]) | 337 ]) |
334 waterfall = add_tester( | 338 waterfall = add_tester( |
335 waterfall, 'Win 7 Nvidia GPU Perf', | 339 waterfall, 'Win 7 Nvidia GPU Perf', |
336 'chromium-rel-win7-gpu-nvidia', 'win', | 340 'chromium-rel-win7-gpu-nvidia', 'win', |
337 swarming=[ | 341 swarming=[ |
338 { | 342 { |
339 'gpu': '10de:104a', | 343 'gpu': '10de:104a', |
340 'os': 'Windows-2008ServerR2-SP1', | 344 'os': 'Windows-2008ServerR2-SP1', |
341 'device_ids': [ | 345 'device_ids': [ |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 waterfall['name'] = 'chromium.perf' | 750 waterfall['name'] = 'chromium.perf' |
747 fyi_waterfall = get_fyi_waterfall_config() | 751 fyi_waterfall = get_fyi_waterfall_config() |
748 fyi_waterfall['name'] = 'chromium.perf.fyi' | 752 fyi_waterfall['name'] = 'chromium.perf.fyi' |
749 | 753 |
750 generate_all_tests(fyi_waterfall) | 754 generate_all_tests(fyi_waterfall) |
751 generate_all_tests(waterfall) | 755 generate_all_tests(waterfall) |
752 return 0 | 756 return 0 |
753 | 757 |
754 if __name__ == '__main__': | 758 if __name__ == '__main__': |
755 sys.exit(main()) | 759 sys.exit(main()) |
OLD | NEW |