Chromium Code Reviews| 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..fb5953fd0b9f657462e021c9bddd83ca17c052e4 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 set_tombstones(self, tombstones): |
| + self._tombstones = tombstones |
|
jbudorick
2016/08/01 17:39:18
... as opposed to this, which _is_ storing the tom
BigBossZhiling
2016/08/01 22:35:12
Acknowledged.
|