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

Unified Diff: tools/telemetry/telemetry/page/gtest_test_results.py

Issue 113563004: Add perf tests for starting Chrome with URL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing file Created 7 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/telemetry/telemetry/page/gtest_test_results.py
diff --git a/tools/telemetry/telemetry/page/gtest_test_results.py b/tools/telemetry/telemetry/page/gtest_test_results.py
index ff1b115968f97c9cc32b9c87bfc3bc7035e91ebc..69b0002081e75d8cd56265f61f80650b8b94c7a2 100644
--- a/tools/telemetry/telemetry/page/gtest_test_results.py
+++ b/tools/telemetry/telemetry/page/gtest_test_results.py
@@ -63,6 +63,8 @@ class GTestTestResults(page_test_results.PageTestResults):
super(GTestTestResults, self).addSkip(test, reason)
test_name = GTestTestResults._formatTestname(test)
logging.warning('===== SKIPPING TEST %s: %s =====', test_name, reason)
+ if self._timestamp == None:
+ self._timestamp = time.time()
jeremy 2013/12/15 13:03:36 What is this change needed for?
aberent 2013/12/16 17:07:43 Actually nothing to do with this CL. I hit a crash
jeremy 2013/12/17 11:29:44 Makes sense, can you ask dtu@ or someone else fami
print >> self._output_stream, '[ OK ]', test_name, (
'(%0.f ms)' % self._GetMs())
sys.stdout.flush()

Powered by Google App Engine
This is Rietveld 408576698