[telemetry] - Change default benchmark list to use chartjson output.
commit1a76ca43d08c509d2c42d54fc757601be41efcd8
authorsimonhatch <simonhatch@chromium.org>
Fri, 5 Dec 2014 20:35:54 +0000 (5 12:35 -0800)
committerCommit bot <commit-bot@chromium.org>
Fri, 5 Dec 2014 20:36:20 +0000 (5 20:36 +0000)
tree1f636e9e0289904e6b9ed74fede10775d75c93cd
parent0ebc0a391d9aca92e45bd3c674bd2c140e4fac0e
[telemetry] - Change default benchmark list to use chartjson output.

Waterfall is running on chartjson now, but we've got hacks in the recipes to swap the command lines from buildbot->chartjson.

ie. instead of:

{
  "steps": {
    "blink_perf.animation": {
      "cmd": "/path/to/run_benchmark -v --output-format=buildbot the_test",
      "device_affinity": -1,
      "perf_dashboard_id": "foo"
    },
}

->

{
  "steps": {
    "blink_perf.animation": {
      "cmd": "/path/to/run_benchmark -v --output-format=chartjson --upload-results the_test",
      "device_affinity": -1,
      "perf_dashboard_id": "foo"
    },
}

BUG=422173, 422174

Review URL: https://codereview.chromium.org/779223004

Cr-Commit-Position: refs/heads/master@{#307072}
tools/telemetry/telemetry/benchmark_runner.py