Chromium Code Reviews| 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 2324fca1194d3efc8ad608b40abd5fc68e5ce898..84c840aa6ecc116daf35d91e49866ab1576c39a4 100644 |
| --- a/build/android/pylib/instrumentation/instrumentation_test_instance.py |
| +++ b/build/android/pylib/instrumentation/instrumentation_test_instance.py |
| @@ -54,6 +54,7 @@ _CMDLINE_NAME_SEGMENT_RE = re.compile( |
| r' with(?:out)? \{[^\}]*\}') |
| _PICKLE_FORMAT_VERSION = 11 |
| +FAILURE_SCREENSHOT_SUBDIR = 'screenshots' |
| class MissingSizeAnnotationError(test_exception.TestException): |
| def __init__(self, class_name): |
| @@ -653,6 +654,8 @@ class InstrumentationTestInstance(test_instance.TestInstance): |
| self._flags.append('--strict-mode=' + args.strict_mode) |
| if args.regenerate_goldens: |
| self._flags.append('--regenerate-goldens') |
| + if args.gs_results_bucket: |
|
jbudorick
2017/05/05 01:21:58
The logical connection here between gs_results_buc
mikecase (-- gone --)
2017/05/05 18:09:19
nope! You are correct!
|
| + self._flags.append('--screenshot-dir=%s' % FAILURE_SCREENSHOT_SUBDIR) |
| if args.test_arguments: |
| # --test-arguments is deprecated for gtests and is in the process of |