| Index: build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| diff --git a/build/android/pylib/instrumentation/instrumentation_test_instance.py b/build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| index b6dd7c6284977ba79d3715265308b34df539f61d..d124181ac554cc6e31328e603fc85a34f81ac08b 100644
|
| --- a/build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| +++ b/build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| @@ -488,7 +488,6 @@ class InstrumentationTestInstance(test_instance.TestInstance):
|
| self._initializeTombstonesAttributes(args)
|
|
|
| self._gs_results_bucket = None
|
| - self._should_save_logcat = None
|
| self._initializeLogAttributes(args)
|
|
|
| self._edit_shared_prefs = []
|
| @@ -674,7 +673,6 @@ class InstrumentationTestInstance(test_instance.TestInstance):
|
|
|
| def _initializeLogAttributes(self, args):
|
| self._gs_results_bucket = args.gs_results_bucket
|
| - self._should_save_logcat = bool(args.json_results_file)
|
|
|
| def _initializeEditPrefsAttributes(self, args):
|
| if not hasattr(args, 'shared_prefs_file') or not args.shared_prefs_file:
|
| @@ -743,10 +741,6 @@ class InstrumentationTestInstance(test_instance.TestInstance):
|
| def junit4_runner_class(self):
|
| return self._junit4_runner_class
|
|
|
| - @property
|
| - def should_save_logcat(self):
|
| - return self._should_save_logcat
|
| -
|
| @property
|
| def package_info(self):
|
| return self._package_info
|
|
|