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

Side by Side Diff: scripts/slave/recipes/chromium.py

Issue 745463003: Display telemetry chartjson output and result data on waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Added coverage. Created 6 years 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 DEPS = [ 5 DEPS = [
6 'adb', 6 'adb',
7 'chromium', 7 'chromium',
8 'chromium_android', 8 'chromium_android',
9 'chromium_tests', 9 'chromium_tests',
10 'isolate', 10 'isolate',
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 yield ( 339 yield (
340 api.test('perf_test_profile_failure') + 340 api.test('perf_test_profile_failure') +
341 api.properties.generic(mastername='chromium.perf', 341 api.properties.generic(mastername='chromium.perf',
342 buildername='Linux Perf (1)', 342 buildername='Linux Perf (1)',
343 parent_buildername='Linux Builder', 343 parent_buildername='Linux Builder',
344 buildnumber=0) + 344 buildnumber=0) +
345 api.platform('linux', 64) + 345 api.platform('linux', 64) +
346 api.override_step_data( 346 api.override_step_data(
347 'blink_perf.all.release', retcode=1) 347 'blink_perf.all.release', retcode=1)
348 ) 348 )
349
350 yield (
351 api.test('test_chartjson_enabled') +
352 api.properties.generic(mastername='chromium.perf',
353 buildername='Linux Perf (1)',
354 parent_buildername='Linux Builder',
355 buildnumber=0) +
356 api.platform('linux', 64) +
357 api.override_step_data(
358 'List Perf Tests',
359 api.json.output({
360 "steps": {
361 "blink_perf.all.exact": {
362 "cmd": "/usr/bin/python /path/to/run_benmark --a=1 -v --b=2",
363 "perf_dashboard_id": "blink_perf.all",
364 "device_affinity": 0,
365 "chartjson_file": True
366 }
367 },
368 "version": 2,
369 }))
370 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698