6835241: Annotate some tests with @ignore that have shown to be unpredictable
Reviewed-by: tbell
This commit is contained in:
parent
101e0eb871
commit
2756e99316
@ -23,7 +23,7 @@
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @bug 4962341
|
||||
* @bug 4962341 6832557
|
||||
* @summary Check getEnclosingMethod method
|
||||
* @author Joseph D. Darcy
|
||||
*/
|
||||
@ -57,8 +57,8 @@ public class EnclosingConstructorTests {
|
||||
}
|
||||
|
||||
|
||||
static int examine(Class enclosedClass, String constructorSig) {
|
||||
Constructor c = enclosedClass.getEnclosingConstructor();
|
||||
static int examine(Class<?> enclosedClass, String constructorSig) {
|
||||
Constructor<?> c = enclosedClass.getEnclosingConstructor();
|
||||
if (c == null && constructorSig == null)
|
||||
return 0;
|
||||
|
||||
|
@ -23,6 +23,7 @@
|
||||
|
||||
# @test
|
||||
# @bug 5088398
|
||||
# @ignore until bug 6835233 dealt with
|
||||
# @summary Test parallel class loading by parallel transformers.
|
||||
# @author Daniel D. Daugherty as modified from the code of Daryl Puryear @ Wily
|
||||
#
|
||||
|
@ -23,7 +23,8 @@
|
||||
|
||||
/*
|
||||
* @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
|
||||
* ThreadMXBean.getThreadInfo.getThreadState().
|
||||
* It also tests lock information returned by ThreadInfo.
|
||||
|
@ -26,6 +26,7 @@
|
||||
|
||||
# @test
|
||||
# @bug 6440846
|
||||
# @ignore until 6203816 is dealt with.
|
||||
# @summary make sure we do not deadlock between ExtClassLoader and AppClassLoader
|
||||
# @author Valerie Peng
|
||||
# @run shell/timeout=20 Deadlock2.sh
|
||||
|
@ -24,6 +24,7 @@
|
||||
/*
|
||||
* @test
|
||||
* @bug 6467152 6716076 6829503
|
||||
* @ignore Until made more stable, see 6829636.
|
||||
* @summary deadlock occurs in LogManager initialization and JVM termination
|
||||
* @author Serguei Spitsyn / Hitachi / Martin Buchholz
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user