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

Unified Diff: build/android/pylib/instrumentation/test_result.py

Issue 2237553003: (Reland) Added tombstones in instrumentation tests results. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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
Index: build/android/pylib/instrumentation/test_result.py
diff --git a/build/android/pylib/instrumentation/test_result.py b/build/android/pylib/instrumentation/test_result.py
index 24e80a8e5fbcf0fe898b2244887b3761d3ef144c..b365df75302a46ca385cba2ad6c8fd1d4155accd 100644
--- a/build/android/pylib/instrumentation/test_result.py
+++ b/build/android/pylib/instrumentation/test_result.py
@@ -28,3 +28,7 @@ class InstrumentationTestResult(base_test_result.BaseTestResult):
self._class_name = full_name
self._test_name = full_name
self._start_date = start_date
+ self._tombstones = None
+
+ def SetTombstones(self, tombstones):
+ self._tombstones = tombstones

Powered by Google App Engine
This is Rietveld 408576698