| Index: base/test/android/javatests/src/org/chromium/base/test/util/PhoneOnly.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/PhoneOnly.java
|
| similarity index 57%
|
| 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/PhoneOnly.java
|
| index c2b2ecddcda345745d1980aa5c961b8ba6e0add2..1c82e2046aea6d6dcea5351fe0c3fe3066992983 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/PhoneOnly.java
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -10,12 +10,10 @@ import java.lang.annotation.RetentionPolicy;
|
| import java.lang.annotation.Target;
|
|
|
| /**
|
| - * This annotation is for disabled tests.
|
| - * <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.
|
| + * Annotation for specifying that the test should only be run on phones.
|
| */
|
| @Target(ElementType.METHOD)
|
| @Retention(RetentionPolicy.RUNTIME)
|
| -public @interface DisabledTest {
|
| +public @interface PhoneOnly {
|
| +
|
| }
|
|
|