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

Unified Diff: build/android/test_runner.py

Issue 2583933003: Replace deprecated Android java test annotations (Closed)
Patch Set: Add presubmit checks Created 4 years 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/test_runner.py
diff --git a/build/android/test_runner.py b/build/android/test_runner.py
index 612060af416241d1b78e8039168a33095e5d7ed5..5cabb2d79c9494194bd05c9e95c49251359b9ec5 100755
--- a/build/android/test_runner.py
+++ b/build/android/test_runner.py
@@ -313,8 +313,8 @@ def ProcessJavaTestOptions(args):
elif args.test_filter:
args.annotations = []
else:
- args.annotations = ['Smoke', 'SmallTest', 'MediumTest', 'LargeTest',
- 'EnormousTest', 'IntegrationTest']
+ args.annotations = ['SmallTest', 'MediumTest', 'LargeTest', 'EnormousTest',
+ 'IntegrationTest']
if args.exclude_annotation_str:
args.exclude_annotations = args.exclude_annotation_str.split(',')

Powered by Google App Engine
This is Rietveld 408576698