summaryrefslogtreecommitdiffstats
path: root/build/util
diff options
context:
space:
mode:
authorbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-26 19:19:22 +0000
committerbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-26 19:19:22 +0000
commita8a5907d81ba1ed4b5d91dfefdee2089c21d05ba (patch)
tree23239a7f45ecb9234b00e553e4bbdf4ba5d5dfdc /build/util
parent3cf44c4f49de9b097ef29fedb16acf53879891a8 (diff)
downloadchromium_src-a8a5907d81ba1ed4b5d91dfefdee2089c21d05ba.zip
chromium_src-a8a5907d81ba1ed4b5d91dfefdee2089c21d05ba.tar.gz
chromium_src-a8a5907d81ba1ed4b5d91dfefdee2089c21d05ba.tar.bz2
Android / Telemetry: final cleanup on perf_tests_helper.
This module has moved to build/util/lib/common. Fix up remaining references and remove the old file. Also, bring up a tiny change that went on the old module (units for histogram). BUG= Review URL: https://codereview.chromium.org/24253006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225532 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/util')
-rw-r--r--build/util/lib/common/perf_tests_results_helper.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/build/util/lib/common/perf_tests_results_helper.py b/build/util/lib/common/perf_tests_results_helper.py
index 733cbf9..cacf54e 100644
--- a/build/util/lib/common/perf_tests_results_helper.py
+++ b/build/util/lib/common/perf_tests_results_helper.py
@@ -134,11 +134,12 @@ def PrintPerfResult(measurement, trace, values, units,
# across different histograms.
assert len(values) == 1
value = values[0]
- output = '%s%s: %s= %s' % (
+ output = '%s%s: %s= %s %s' % (
RESULT_TYPES[result_type],
_EscapePerfResult(measurement),
trace_name,
- value)
+ value,
+ units)
avg, sd = GeomMeanAndStdDevFromHistogram(value)
if avg: