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

Unified Diff: tools/perf/benchmarks/robohornet_pro.py

Issue 809393002: Added support for improvement_direction to relevant values, which is propogated to chartjson. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
Index: tools/perf/benchmarks/robohornet_pro.py
diff --git a/tools/perf/benchmarks/robohornet_pro.py b/tools/perf/benchmarks/robohornet_pro.py
index d36da24c1c7f850d03cbd0b1ef0b561a15f85235..d0ad9aa3a1c34a2925684a3b645c387c1d03f69c 100644
--- a/tools/perf/benchmarks/robohornet_pro.py
+++ b/tools/perf/benchmarks/robohornet_pro.py
@@ -39,7 +39,8 @@ class _RobohornetProMeasurement(page_test.PageTest):
result = int(tab.EvaluateJavaScript('stopTime - startTime'))
results.AddValue(
- scalar.ScalarValue(results.current_page, 'Total', 'ms', result))
+ scalar.ScalarValue(results.current_page, 'Total', 'ms', result,
+ higher_is_better=False))
# We plan to remove this test because it doesn't give useful data, but

Powered by Google App Engine
This is Rietveld 408576698