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

Unified Diff: base/test/android/javatests/src/org/chromium/base/test/util/DisabledTest.java

Issue 1849663002: [Android] Allow class-level use of @DisabledTest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/android/javatests/src/org/chromium/base/test/util/DisabledTest.java
diff --git a/base/test/android/javatests/src/org/chromium/base/test/util/DisabledTest.java b/base/test/android/javatests/src/org/chromium/base/test/util/DisabledTest.java
index 0dfb4be856a727d74a15b65b02cdb1212a764c3b..58bdb8a6af755a050d69e799ca966a7c6efbf983 100644
--- a/base/test/android/javatests/src/org/chromium/base/test/util/DisabledTest.java
+++ b/base/test/android/javatests/src/org/chromium/base/test/util/DisabledTest.java
@@ -15,7 +15,7 @@ import java.lang.annotation.Target;
* Tests with this annotation will not be run on any of the normal bots.
* Please note that they might eventually run on a special bot.
*/
-@Target(ElementType.METHOD)
+@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface DisabledTest {
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698