Commit d8f144f9 authored by John Budorick's avatar John Budorick Committed by Commit Bot

android: actually allow running MANUAL_* gtests.

Change-Id: If8206c443eee80987c4528d6aaeb58fb348dc57b
Reviewed-on: https://chromium-review.googlesource.com/1176113Reviewed-by: default avatarChristian Fremerey <chfremer@chromium.org>
Reviewed-by: default avataragrieve <agrieve@chromium.org>
Reviewed-by: default avatarPeter Wen <wnwen@chromium.org>
Commit-Queue: John Budorick <jbudorick@chromium.org>
Cr-Commit-Position: refs/heads/master@{#583346}
parent 96641aed
...@@ -533,7 +533,9 @@ class GtestTestInstance(test_instance.TestInstance): ...@@ -533,7 +533,9 @@ class GtestTestInstance(test_instance.TestInstance):
disabled_filter_items = [] disabled_filter_items = []
if disabled_prefixes is None: if disabled_prefixes is None:
disabled_prefixes = ['FAILS_', 'PRE_', 'MANUAL_'] disabled_prefixes = ['FAILS_', 'PRE_']
if '--run-manual' not in self._flags:
disabled_prefixes += ['MANUAL_']
if not self._run_disabled: if not self._run_disabled:
disabled_prefixes += ['DISABLED_', 'FLAKY_'] disabled_prefixes += ['DISABLED_', 'FLAKY_']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment