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

Unified Diff: build/android/pylib/perf_tests_helper.py

Issue 12900005: [Telemetry] Fix histogram naming. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/telemetry/telemetry/page/page_benchmark_results.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/perf_tests_helper.py
diff --git a/build/android/pylib/perf_tests_helper.py b/build/android/pylib/perf_tests_helper.py
index 44397c01058f8d9e310e5aea3c7872fa00621d54..5ae6dc7bf96958087cfc4134286b09cf4e34333b 100644
--- a/build/android/pylib/perf_tests_helper.py
+++ b/build/android/pylib/perf_tests_helper.py
@@ -110,11 +110,10 @@ def PrintPerfResult(measurement, trace, values, units, result_type='default',
# across different histograms.
assert len(values) == 1
value = values[0]
- measurement += '.' + trace_name
output = '%s%s: %s= %s' % (
RESULT_TYPES[result_type],
_EscapePerfResult(measurement),
- _EscapePerfResult(measurement),
+ trace_name,
value)
avg, sd = GeomMeanAndStdDevFromHistogram(value)
« no previous file with comments | « no previous file | tools/telemetry/telemetry/page/page_benchmark_results.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698