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

Unified Diff: build/android/pylib/base/base_test_result.py

Issue 2581553004: Store tombstones url, not the actual tombstones, inside test result. (Closed)
Patch Set: fixes Created 4 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
« no previous file with comments | « no previous file | build/android/pylib/local/device/local_device_gtest_run.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 789f98863f8817560657419099a1a55aeae1162d..5f8db5234079dedd25dd31c8fabb02763b642f14 100644
--- a/build/android/pylib/base/base_test_result.py
+++ b/build/android/pylib/base/base_test_result.py
@@ -56,7 +56,7 @@ class BaseTestResult(object):
self._test_type = test_type
self._duration = duration
self._log = log
- self._tombstones = None
+ self._tombstones_url = None
self._logcat_url = None
def __str__(self):
@@ -105,11 +105,11 @@ class BaseTestResult(object):
"""Get the test log."""
return self._log
- def SetTombstones(self, tombstones):
- self._tombstones = tombstones
+ def SetTombstonesUrl(self, tombstones_url):
+ self._tombstones_url = tombstones_url
- def GetTombstones(self):
- return self._tombstones
+ def GetTombstonesUrl(self):
+ return self._tombstones_url
def SetLogcatUrl(self, logcat_url):
self._logcat_url = logcat_url
« no previous file with comments | « no previous file | build/android/pylib/local/device/local_device_gtest_run.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698