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

Unified Diff: tests/spec2k/emit_perf_log.sh

Issue 7834028: Pulling back revision 6635 and 6634 due to broken builds. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 9 years, 3 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/browser_tester/browser_tester.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/spec2k/emit_perf_log.sh
===================================================================
--- tests/spec2k/emit_perf_log.sh (revision 6635)
+++ tests/spec2k/emit_perf_log.sh (working copy)
@@ -15,11 +15,11 @@
local graph_label=$2
local bench=$3
local setup=$4
- # Generate a list of times "[x,y,z]". The chromium perf log parser
- # will know to average this list of times.
- local times="[$(awk '{print $1 + $2}' ${time_file} | \
- tr '\n' ',' | sed 's/,$//')]"
- LogPerf ${graph_label} ${bench} ${setup} "${times}" "secs"
+ # Generate a set of times "{x,y,z}". The chromium perf log parser
+ # will know to average this set of times.
+ local time_set="{$(awk '{print $1 + $2}' ${time_file} | \
+ tr '\n' ',' | sed 's/,$//')}"
+ LogPerf ${graph_label} ${bench} ${setup} "${time_set}" "secs"
}
#@ LogGzippedSize <file_to_zip> <graph_label> <bench> <compiler_setup>
« no previous file with comments | « no previous file | tools/browser_tester/browser_tester.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698