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

Unified Diff: chrome/test/perf/perf_test.cc

Issue 11365067: Revert 163638 - Adds units for all Chromium perf tests. These units are recorded in the graphs.dat … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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 | « chrome/test/perf/page_cycler_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/perf/perf_test.cc
===================================================================
--- chrome/test/perf/perf_test.cc (revision 165683)
+++ chrome/test/perf/perf_test.cc (working copy)
@@ -231,13 +231,13 @@
}
std::string t_name(test_name);
- AppendResult(output, "read_op_b", "", "r_op_b" + t_name, read_op_b, "ops",
+ AppendResult(output, "read_op_b", "", "r_op_b" + t_name, read_op_b, "",
false);
- AppendResult(output, "write_op_b", "", "w_op_b" + t_name, write_op_b, "ops",
+ AppendResult(output, "write_op_b", "", "w_op_b" + t_name, write_op_b, "",
false);
- AppendResult(output, "other_op_b", "", "o_op_b" + t_name, other_op_b, "ops",
+ AppendResult(output, "other_op_b", "", "o_op_b" + t_name, other_op_b, "",
false);
- AppendResult(output, "total_op_b", "", "IO_op_b" + t_name, total_op_b, "ops",
+ AppendResult(output, "total_op_b", "", "IO_op_b" + t_name, total_op_b, "",
false);
AppendResult(output, "read_byte_b", "", "r_b" + t_name, read_byte_b, "kb",
@@ -249,13 +249,13 @@
AppendResult(output, "total_byte_b", "", "IO_b" + t_name, total_byte_b, "kb",
false);
- AppendResult(output, "read_op_r", "", "r_op_r" + t_name, read_op_r, "ops",
+ AppendResult(output, "read_op_r", "", "r_op_r" + t_name, read_op_r, "",
false);
- AppendResult(output, "write_op_r", "", "w_op_r" + t_name, write_op_r, "ops",
+ AppendResult(output, "write_op_r", "", "w_op_r" + t_name, write_op_r, "",
false);
- AppendResult(output, "other_op_r", "", "o_op_r" + t_name, other_op_r, "ops",
+ AppendResult(output, "other_op_r", "", "o_op_r" + t_name, other_op_r, "",
false);
- AppendResult(output, "total_op_r", "", "IO_op_r" + t_name, total_op_r, "ops",
+ AppendResult(output, "total_op_r", "", "IO_op_r" + t_name, total_op_r, "",
false);
AppendResult(output, "read_byte_r", "", "r_r" + t_name, read_byte_r, "kb",
@@ -412,7 +412,7 @@
NOTIMPLEMENTED();
#endif
AppendResult(output, "processes", "", "proc_" + trace_name,
- chrome_processes.size(), "count",
+ chrome_processes.size(), "",
false /* not important */);
return output;
« no previous file with comments | « chrome/test/perf/page_cycler_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698