summaryrefslogtreecommitdiffstats
path: root/luni-kernel/src
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2010-02-23 14:57:28 -0800
committerElliott Hughes <enh@google.com>2010-02-23 14:57:28 -0800
commit7a076f07b8cc14b9bc8b9639320d28822aa57617 (patch)
treeb0e79cabece68c1ae2761996bfd2fd507c41dced /luni-kernel/src
parent703ef27278351bd0fd1d50cbd565826f217571da (diff)
downloadlibcore-7a076f07b8cc14b9bc8b9639320d28822aa57617.zip
libcore-7a076f07b8cc14b9bc8b9639320d28822aa57617.tar.gz
libcore-7a076f07b8cc14b9bc8b9639320d28822aa57617.tar.bz2
Remove more useless annotations: logging, luni-kernel, and math.
(Plus a bonus item: one Android-written test under luni.)
Diffstat (limited to 'luni-kernel/src')
-rw-r--r--luni-kernel/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/ThreadsTest.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/luni-kernel/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/ThreadsTest.java b/luni-kernel/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/ThreadsTest.java
index c24e297..8ba2445 100644
--- a/luni-kernel/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/ThreadsTest.java
+++ b/luni-kernel/src/test/java/tests/api/org/apache/harmony/kernel/dalvik/ThreadsTest.java
@@ -21,15 +21,10 @@ import java.lang.reflect.Field;
import junit.framework.Assert;
import junit.framework.TestCase;
import sun.misc.Unsafe;
-import dalvik.annotation.AndroidOnly;
-import dalvik.annotation.TestLevel;
-import dalvik.annotation.TestTargetClass;
-import dalvik.annotation.TestTargetNew;
/**
* Tests for the <code>park()</code> functionality of {@link Unsafe}.
*/
-@TestTargetClass(Unsafe.class)
public class ThreadsTest extends TestCase {
private static Unsafe UNSAFE = null;
private static RuntimeException INITIALIZEFAILED = null;
@@ -54,13 +49,6 @@ public class ThreadsTest extends TestCase {
}
/** Test the case where the park times out. */
- @TestTargetNew(
- level = TestLevel.PARTIAL,
- notes = "",
- method = "unpark",
- args = {Object.class}
- )
- @AndroidOnly("Accesses Android-specific private field")
public void test_parkFor_1() {
Parker parker = new Parker(false, 500);
Thread parkerThread = new Thread(parker);
@@ -73,13 +61,6 @@ public class ThreadsTest extends TestCase {
}
/** Test the case where the unpark happens before the timeout. */
- @TestTargetNew(
- level = TestLevel.PARTIAL,
- notes = "",
- method = "unpark",
- args = {Object.class}
- )
- @AndroidOnly("Accesses Android-specific private field")
public void test_parkFor_2() {
Parker parker = new Parker(false, 1000);
Thread parkerThread = new Thread(parker);
@@ -92,13 +73,6 @@ public class ThreadsTest extends TestCase {
}
/** Test the case where the thread is preemptively unparked. */
- @TestTargetNew(
- level = TestLevel.PARTIAL,
- notes = "",
- method = "unpark",
- args = {Object.class}
- )
- @AndroidOnly("Accesses Android-specific private field")
public void test_parkFor_3() {
Parker parker = new Parker(false, 1000);
Thread parkerThread = new Thread(parker);
@@ -109,13 +83,6 @@ public class ThreadsTest extends TestCase {
}
/** Test the case where the park times out. */
- @TestTargetNew(
- level = TestLevel.PARTIAL,
- notes = "",
- method = "unpark",
- args = {Object.class}
- )
- @AndroidOnly("Accesses Android-specific private field")
public void test_parkUntil_1() {
Parker parker = new Parker(true, 500);
Thread parkerThread = new Thread(parker);
@@ -128,13 +95,6 @@ public class ThreadsTest extends TestCase {
}
/** Test the case where the unpark happens before the timeout. */
- @TestTargetNew(
- level = TestLevel.PARTIAL,
- notes = "",
- method = "unpark",
- args = {Object.class}
- )
- @AndroidOnly("Accesses Android-specific private field")
public void test_parkUntil_2() {
Parker parker = new Parker(true, 1000);
Thread parkerThread = new Thread(parker);
@@ -147,13 +107,6 @@ public class ThreadsTest extends TestCase {
}
/** Test the case where the thread is preemptively unparked. */
- @TestTargetNew(
- level = TestLevel.PARTIAL,
- notes = "",
- method = "unpark",
- args = {Object.class}
- )
- @AndroidOnly("Accesses Android-specific private field")
public void test_parkUntil_3() {
Parker parker = new Parker(true, 1000);
Thread parkerThread = new Thread(parker);