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

Unified Diff: build/android/pylib/base/base_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: minor fixes 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
« no previous file with comments | « no previous file | build/android/pylib/instrumentation/test_result.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/base/base_test_result.py
diff --git a/build/android/pylib/base/base_test_result.py b/build/android/pylib/base/base_test_result.py
index dabe132b8b107a48fd35c9849181ce706ea80069..333211fa3219480837e4bbc38d5140e70ac57da7 100644
--- a/build/android/pylib/base/base_test_result.py
+++ b/build/android/pylib/base/base_test_result.py
@@ -41,6 +41,7 @@ class BaseTestResult(object):
self._test_type = test_type
self._duration = duration
self._log = log
+ self._tombstones = None
def __str__(self):
return self._name
@@ -88,6 +89,11 @@ class BaseTestResult(object):
"""Get the test log."""
return self._log
+ def SetTombstones(self, tombstones):
+ self._tombstones = tombstones
+
+ def GetTombstones(self):
+ return self._tombstones
class TestRunResults(object):
"""Set of results for a test run."""
« no previous file with comments | « no previous file | build/android/pylib/instrumentation/test_result.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698