test/java/rmi/testlibrary/TestParams.java

Print this page

        

*** 32,41 **** --- 32,42 ---- public class TestParams { /** variables that hold value property values */ public static final String testSrc; public static final String testClasses; + public static final String testClassPath; /** name of default security policy for test JVM */ public static final String defaultPolicy; /** name of default security policy for RMID */
*** 55,64 **** --- 56,66 ---- /* Initalize commonly used strings */ static { testSrc = TestLibrary.getProperty("test.src", "."); testClasses = TestLibrary.getProperty("test.classes", "."); + testClassPath = TestLibrary.getProperty("test.class.path", "."); String dp = TestLibrary.getProperty("java.security.policy", null); if (dp == null) { dp = testSrc + File.separatorChar + "security.policy"; }