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

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

Issue 2251863003: Add tombstones as part of json-results-file for android instr tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 b365df75302a46ca385cba2ad6c8fd1d4155accd..e2dd10102a1d3aa2186c1451e3addac37e3bfbed 100644
--- a/build/android/pylib/instrumentation/test_result.py
+++ b/build/android/pylib/instrumentation/test_result.py
@@ -28,7 +28,10 @@ class InstrumentationTestResult(base_test_result.BaseTestResult):
self._class_name = full_name
self._test_name = full_name
self._start_date = start_date
- self._tombstones = None
jbudorick 2016/08/17 04:14:30 I think this should stay None. Write an empty stri
BigBossZhiling 2016/08/17 23:20:03 Done.
+ self._tombstones = ''
def SetTombstones(self, tombstones):
self._tombstones = tombstones
+
+ def GetTombstones(self):
+ return self._tombstones
« no previous file with comments | « no previous file | build/android/pylib/results/json_results.py » ('j') | build/android/pylib/results/json_results.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698