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

Unified Diff: build/android/pylib/local/device/local_device_instrumentation_test_run.py

Issue 2974163002: Fix the stack script issue when symbolizing tombstones. (Closed)
Patch Set: add tombstones_helper into git Created 3 years, 5 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/local/device/local_device_instrumentation_test_run.py
diff --git a/build/android/pylib/local/device/local_device_instrumentation_test_run.py b/build/android/pylib/local/device/local_device_instrumentation_test_run.py
index 7ba90321b634c4d0e2a01987e9334ea12f30db56..6b5e2ea8e729c069e181e4434bcd1dd446687809 100644
--- a/build/android/pylib/local/device/local_device_instrumentation_test_run.py
+++ b/build/android/pylib/local/device/local_device_instrumentation_test_run.py
@@ -533,7 +533,8 @@ class LocalDeviceInstrumentationTestRun(
for result in results:
if result.GetType() == base_test_result.ResultType.CRASH:
if not tombstones_url:
- resolved_tombstones = tombstones.ResolveTombstones(
+ tombstones_helper = self._test_instance.tombstones_helper
+ resolved_tombstones = tombstones_helper.ResolveTombstones(
device,
resolve_all_tombstones=True,
include_stack_symbols=False,

Powered by Google App Engine
This is Rietveld 408576698