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)] | |
336 } | 332 } |
337 ]) | 333 ]) |
338 waterfall = add_tester( | 334 waterfall = add_tester( |
339 waterfall, 'Win 7 Nvidia GPU Perf', | 335 waterfall, 'Win 7 Nvidia GPU Perf', |
340 'chromium-rel-win7-gpu-nvidia', 'win', | 336 'chromium-rel-win7-gpu-nvidia', 'win', |
341 swarming=[ | 337 swarming=[ |
342 { | 338 { |
343 'gpu': '10de:104a', | 339 'gpu': '10de:104a', |
344 'os': 'Windows-2008ServerR2-SP1', | 340 'os': 'Windows-2008ServerR2-SP1', |
345 'device_ids': [ | 341 'device_ids': [ |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
751 waterfall['name'] = 'chromium.perf' | 747 waterfall['name'] = 'chromium.perf' |
752 fyi_waterfall = get_fyi_waterfall_config() | 748 fyi_waterfall = get_fyi_waterfall_config() |
753 fyi_waterfall['name'] = 'chromium.perf.fyi' | 749 fyi_waterfall['name'] = 'chromium.perf.fyi' |
754 | 750 |
755 generate_all_tests(fyi_waterfall) | 751 generate_all_tests(fyi_waterfall) |
756 generate_all_tests(waterfall) | 752 generate_all_tests(waterfall) |
757 return 0 | 753 return 0 |
758 | 754 |
759 if __name__ == '__main__': | 755 if __name__ == '__main__': |
760 sys.exit(main()) | 756 sys.exit(main()) |
OLD | NEW |