6961518: TEST_BUG: add @run main/othervm in tests that call setSecurityManager
Mark tests to run in othervm Reviewed-by: ohair
This commit is contained in:
parent
a98209a61f
commit
fc99cf1793
@ -174,10 +174,6 @@ java/beans/Statement/Test4653179.java generic-all
|
||||
java/beans/XMLEncoder/Test4625418.java solaris-sparc
|
||||
|
||||
# Problems with samevm and setting security manager (speculation partially)
|
||||
java/beans/Beans/Test4080522.java generic-all
|
||||
java/beans/EventHandler/Test6277246.java generic-all
|
||||
java/beans/EventHandler/Test6277266.java generic-all
|
||||
java/beans/Introspector/Test6277246.java generic-all
|
||||
java/beans/Introspector/4168475/Test4168475.java generic-all
|
||||
java/beans/Introspector/4520754/Test4520754.java generic-all
|
||||
java/beans/Introspector/6380849/TestBeanInfo.java generic-all
|
||||
@ -344,9 +340,6 @@ java/io/StreamTokenizer/Comment.java generic-all
|
||||
# Some of these tests (like java/lang/management) may just need to be marked
|
||||
# othervm, but that is partially speculation.
|
||||
|
||||
# Samevm failure on OpenSolaris, security manager?
|
||||
java/lang/ClassLoader/UninitializedParent.java generic-all
|
||||
|
||||
# Times out on solaris 10 sparc
|
||||
java/lang/ClassLoader/Assert.java generic-all
|
||||
|
||||
@ -359,12 +352,8 @@ java/lang/management/RuntimeMXBean/UpTime.java generic-all
|
||||
# Solaris sparc, samevm, java.lang.Exception: Read from closed pipe hangs
|
||||
java/lang/Runtime/exec/SleepyCat.java generic-all
|
||||
|
||||
# Need to be marked othervm, or changed to be samevm safe
|
||||
java/lang/annotation/ParameterAnnotations.java generic-all
|
||||
|
||||
# Need to be marked othervm, or changed to be samevm safe
|
||||
java/lang/ClassLoader/defineClass/DefineClassByteBuffer.java generic-all
|
||||
java/lang/ClassLoader/findSystemClass/Loader.java generic-all
|
||||
|
||||
# Fedora 9 32bit, -client, samevm, Error while cleaning up threads after test
|
||||
java/lang/management/ThreadMXBean/Locks.java generic-all
|
||||
@ -408,7 +397,6 @@ java/lang/reflect/Proxy/returnTypes/Test.java generic-all
|
||||
java/lang/Runtime/exec/LotsOfOutput.java generic-all
|
||||
java/lang/System/ExitFinalizersAndJIT.java generic-all
|
||||
java/lang/System/finalization/FinThreads.java generic-all
|
||||
java/lang/System/IgnoreNullSecurityManager.java generic-all
|
||||
java/lang/Thread/GenerifyStackTraces.java generic-all
|
||||
java/lang/Thread/StackTraces.java generic-all
|
||||
java/lang/ThreadGroup/Daemon.java generic-all
|
||||
@ -1247,7 +1235,6 @@ java/util/logging/ParentLoggersTest.java generic-all
|
||||
|
||||
# Need to be marked othervm, or changed to be samevm safe
|
||||
java/util/ResourceBundle/Bug4168625Test.java generic-all
|
||||
java/util/ResourceBundle/Bug6359330.java generic-all
|
||||
java/util/ResourceBundle/TestBug4179766.java generic-all
|
||||
|
||||
# Need to be marked othervm, or changed to be samevm safe
|
||||
|
@ -29,6 +29,7 @@
|
||||
* Beans.setGuiAvailable
|
||||
* Introspector.setBeanInfoSearchPath
|
||||
* PropertyEditorManager.setEditorSearchPath
|
||||
* @run main/othervm Test4080522
|
||||
* @author Graham Hamilton
|
||||
*/
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
* @test
|
||||
* @bug 6277246
|
||||
* @summary Tests problem with java.beans use of reflection
|
||||
* @run main/othervm Test6277246
|
||||
* @author Jeff Nisewanger
|
||||
*/
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
* @test
|
||||
* @bug 6277266
|
||||
* @summary Tests access control issue in EventHandler
|
||||
* @run main/othervm Test6277266
|
||||
* @author Jeff Nisewanger
|
||||
*/
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
* @test
|
||||
* @bug 6277246
|
||||
* @summary Tests problem with java.beans use of reflection
|
||||
* @run main/othervm Test6277246
|
||||
* @author Jeff Nisewanger
|
||||
*/
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
* @bug 6636650
|
||||
* @summary Uninitialized class loaders should not be a parent of other
|
||||
* class loaders.
|
||||
* @run main/othervm UninitializedParent
|
||||
*/
|
||||
|
||||
|
||||
|
@ -21,10 +21,16 @@
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This test runs in othervm mode as it tests ClassLoader.findSystemClass
|
||||
* and getSystemResource methods.
|
||||
*/
|
||||
|
||||
/* @test
|
||||
@bug 4147599 4478150
|
||||
@summary In 1.2beta4-I ClassLoader loaded classes can not link
|
||||
against application classes.
|
||||
@run main/othervm Loader
|
||||
*/
|
||||
|
||||
/*
|
||||
|
@ -26,6 +26,7 @@
|
||||
* @bug 4213876
|
||||
* @summary Make sure "null" security manager is ignored, as specified in the
|
||||
* javadocs
|
||||
* @run main/othervm IgnoreNullSecurityManager
|
||||
*/
|
||||
|
||||
public class IgnoreNullSecurityManager {
|
||||
|
@ -27,6 +27,7 @@
|
||||
* @summary Check properties of Annotations returned from
|
||||
* getParameterAnnotations, including freedom from security
|
||||
* exceptions.
|
||||
* @run main/othervm ParameterAnnotations
|
||||
* @author Martin Buchholz
|
||||
*/
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
* @summary Make sure that getBundle doesn't cause a security error
|
||||
* with a security manager when instantialing RBClassLoader (internal
|
||||
* classloader).
|
||||
* @run main/othervm Bug6359330
|
||||
*/
|
||||
|
||||
import javax.xml.parsers.SAXParser;
|
||||
|
@ -22,6 +22,7 @@
|
||||
*/
|
||||
/*
|
||||
@test
|
||||
@ignore 6876961
|
||||
@summary test that ResourceBundle.getBundle can be called recursively
|
||||
@build Test4300693RB
|
||||
@run main Test4300693
|
||||
|
Loading…
x
Reference in New Issue
Block a user