6835241: Annotate some tests with @ignore that have shown to be unpredictable

Reviewed-by: tbell
This commit is contained in:
Kelly O'Hair 2009-04-28 14:43:44 -07:00
parent 101e0eb871
commit 2756e99316
5 changed files with 8 additions and 4 deletions

View File

@ -23,7 +23,7 @@
/* /*
* @test * @test
* @bug 4962341 * @bug 4962341 6832557
* @summary Check getEnclosingMethod method * @summary Check getEnclosingMethod method
* @author Joseph D. Darcy * @author Joseph D. Darcy
*/ */
@ -57,8 +57,8 @@ public class EnclosingConstructorTests {
} }
static int examine(Class enclosedClass, String constructorSig) { static int examine(Class<?> enclosedClass, String constructorSig) {
Constructor c = enclosedClass.getEnclosingConstructor(); Constructor<?> c = enclosedClass.getEnclosingConstructor();
if (c == null && constructorSig == null) if (c == null && constructorSig == null)
return 0; return 0;

View File

@ -23,6 +23,7 @@
# @test # @test
# @bug 5088398 # @bug 5088398
# @ignore until bug 6835233 dealt with
# @summary Test parallel class loading by parallel transformers. # @summary Test parallel class loading by parallel transformers.
# @author Daniel D. Daugherty as modified from the code of Daryl Puryear @ Wily # @author Daniel D. Daugherty as modified from the code of Daryl Puryear @ Wily
# #

View File

@ -23,7 +23,8 @@
/* /*
* @test * @test
* @bug 4967283 * @bug 4967283 5080203
* @ignore Due to 5080203, cannot rely on this test always passing.
* @summary Basic unit test of thread states returned by * @summary Basic unit test of thread states returned by
* ThreadMXBean.getThreadInfo.getThreadState(). * ThreadMXBean.getThreadInfo.getThreadState().
* It also tests lock information returned by ThreadInfo. * It also tests lock information returned by ThreadInfo.

View File

@ -26,6 +26,7 @@
# @test # @test
# @bug 6440846 # @bug 6440846
# @ignore until 6203816 is dealt with.
# @summary make sure we do not deadlock between ExtClassLoader and AppClassLoader # @summary make sure we do not deadlock between ExtClassLoader and AppClassLoader
# @author Valerie Peng # @author Valerie Peng
# @run shell/timeout=20 Deadlock2.sh # @run shell/timeout=20 Deadlock2.sh

View File

@ -24,6 +24,7 @@
/* /*
* @test * @test
* @bug 6467152 6716076 6829503 * @bug 6467152 6716076 6829503
* @ignore Until made more stable, see 6829636.
* @summary deadlock occurs in LogManager initialization and JVM termination * @summary deadlock occurs in LogManager initialization and JVM termination
* @author Serguei Spitsyn / Hitachi / Martin Buchholz * @author Serguei Spitsyn / Hitachi / Martin Buchholz
* *