| Index: tools/perf/benchmarks/jetstream.py
|
| diff --git a/tools/perf/benchmarks/jetstream.py b/tools/perf/benchmarks/jetstream.py
|
| index 98c4349eb18b9820f5e719b353b7c044d28a79e9..1b029500c7756116cb61fc8850b389486b7841f1 100644
|
| --- a/tools/perf/benchmarks/jetstream.py
|
| +++ b/tools/perf/benchmarks/jetstream.py
|
| @@ -60,8 +60,9 @@ class _JetstreamMeasurement(page_measurement.PageMeasurement):
|
|
|
| all_scores = []
|
| for k, v in result.iteritems():
|
| - results.Add(k.replace('.', '_'), 'score', v['result'],
|
| - data_type='unimportant')
|
| + results.AddValue(scalar.ScalarValue(
|
| + results.current_page, k.replace('.', '_'), 'score', v['result'],
|
| + important=False))
|
| # Collect all test scores to compute geometric mean.
|
| all_scores.extend(v['result'])
|
| total = statistics.GeometricMean(all_scores)
|
|
|