| Index: base/test/android/javatests/src/org/chromium/base/test/util/Manual.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/Manual.java
|
| similarity index 67%
|
| copy from base/test/android/javatests/src/org/chromium/base/test/util/DisabledTest.java
|
| copy to base/test/android/javatests/src/org/chromium/base/test/util/Manual.java
|
| index 0dfb4be856a727d74a15b65b02cdb1212a764c3b..31f3977bef6c887e1ff9a387f6db26a76ae2064e 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/Manual.java
|
| @@ -10,12 +10,12 @@ import java.lang.annotation.RetentionPolicy;
|
| import java.lang.annotation.Target;
|
|
|
| /**
|
| - * This annotation is for disabled tests.
|
| + * This annotation can be used to mark a test that should only be run manually.
|
| * <p>
|
| - * 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.
|
| + * Tests with this annotation will not be run on bots, because they take too long
|
| + * or need manual monitoring.
|
| */
|
| @Target(ElementType.METHOD)
|
| @Retention(RetentionPolicy.RUNTIME)
|
| -public @interface DisabledTest {
|
| +public @interface Manual {
|
| }
|
|
|