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

Side by Side Diff: tools/perf/core/perf_data_generator.py

Issue 2879883002: Disable cc_perftests on Nexus 5X perf bot (Closed)
Patch Set: Created 3 years, 7 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.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 # pylint: disable=too-many-lines 6 # pylint: disable=too-many-lines
7 7
8 """Script to generate chromium.perf.json and chromium.perf.fyi.json in 8 """Script to generate chromium.perf.json and chromium.perf.fyi.json in
9 the src/testing/buildbot directory and benchmark.csv in the src/tools/perf 9 the src/testing/buildbot directory and benchmark.csv in the src/tools/perf
10 directory. Maintaining these files by hand is too unwieldy. 10 directory. Maintaining these files by hand is too unwieldy.
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 'build74-b1--device1', 'build74-b1--device2', 'build74-b1--device3', 256 'build74-b1--device1', 'build74-b1--device2', 'build74-b1--device3',
257 'build74-b1--device4', 'build74-b1--device5', 'build74-b1--device6', 257 'build74-b1--device4', 'build74-b1--device5', 'build74-b1--device6',
258 'build74-b1--device7', 258 'build74-b1--device7',
259 'build75-b1--device1', 'build75-b1--device2', 'build75-b1--device3', 259 'build75-b1--device1', 'build75-b1--device2', 'build75-b1--device3',
260 'build75-b1--device4', 'build75-b1--device5', 'build75-b1--device6', 260 'build75-b1--device4', 'build75-b1--device5', 'build75-b1--device6',
261 'build75-b1--device7', 261 'build75-b1--device7',
262 ], 262 ],
263 'perf_tests': [ 263 'perf_tests': [
264 ('tracing_perftests', 'build73-b1--device2'), 264 ('tracing_perftests', 'build73-b1--device2'),
265 ('gpu_perftests', 'build73-b1--device2'), 265 ('gpu_perftests', 'build73-b1--device2'),
266 ('cc_perftests', 'build73-b1--device2'), 266 # ('cc_perftests', 'build73-b1--device2'), # crbug.com/721757
267 ] 267 ]
268 } 268 }
269 ]) 269 ])
270 waterfall = add_tester( 270 waterfall = add_tester(
271 waterfall, 'Win 10 High-DPI Perf', 'win-high-dpi', 'win', 271 waterfall, 'Win 10 High-DPI Perf', 'win-high-dpi', 'win',
272 swarming=[ 272 swarming=[
273 { 273 {
274 'gpu': '8086:1616', 274 'gpu': '8086:1616',
275 'os': 'Windows-10-10240', 275 'os': 'Windows-10-10240',
276 'pool': 'Chrome-perf', 276 'pool': 'Chrome-perf',
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
993 return 0 993 return 0
994 else: 994 else:
995 print ('The perf JSON config files are not up-to-date. Please run %s ' 995 print ('The perf JSON config files are not up-to-date. Please run %s '
996 'without --validate-only flag to update the perf JSON ' 996 'without --validate-only flag to update the perf JSON '
997 'configs and benchmark.csv.') % sys.argv[0] 997 'configs and benchmark.csv.') % sys.argv[0]
998 return 1 998 return 1
999 else: 999 else:
1000 update_all_tests([fyi_waterfall, waterfall]) 1000 update_all_tests([fyi_waterfall, waterfall])
1001 update_benchmark_csv() 1001 update_benchmark_csv()
1002 return 0 1002 return 0
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.perf.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698