Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: tools/perf/generate_perf_json.py

Issue 2626373002: Manual revert: Add some perftests to Win7 Intel GPU perf bot. (Closed)
Patch Set: Disabled Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/buildbot/chromium.perf.fyi.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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())
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.perf.fyi.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698