< prev index next >

test/com/sun/jmx/remote/NotificationMarshalVersions/TestSerializationMismatch.java

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.io.File;
  25 import java.lang.reflect.Method;
  26 import java.net.URL;
  27 import java.net.URLClassLoader;
  28 import java.util.Arrays;
  29 
  30 /**
  31  * @test
  32  * @summary Tests for the RMI unmarshalling errors not to cause silent failure.
  33  * @author Jaroslav Bachorik
  34  * @bug 6937053 8005472
  35  *
  36  * @modules java.management
  37  *          jdk.compiler

  38  * @run clean TestSerializationMismatch
  39  * @run main/othervm TestSerializationMismatch
  40  *
  41  */
  42 public class TestSerializationMismatch {
  43     static final String clientDir = "Client";
  44     static final String serverDir = "Server";
  45     static final String testSrc = System.getProperty("test.src");
  46     static final String testSrcDir = testSrc != null ? testSrc : ".";
  47     static final String testSrcClientDir = testSrcDir + File.separator + clientDir + File.separator;
  48     static final String testSrcServerDir = testSrcDir + File.separator + serverDir + File.separator;
  49     static final String testClasses = System.getProperty("test.classes");
  50     static final String testClassesDir = testClasses != null ? testClasses : ".";
  51     static final String testClassesClientDir = testClassesDir + File.separator + clientDir + File.separator;
  52     static final String testClassesServerDir = testClassesDir + File.separator + serverDir + File.separator;
  53 
  54     static final boolean debug = true;
  55 
  56     public static void main(String[] args) throws Exception {
  57         setup();
  58 
  59         compileClient();
  60         compileServer();




  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.io.File;
  25 import java.lang.reflect.Method;
  26 import java.net.URL;
  27 import java.net.URLClassLoader;
  28 import java.util.Arrays;
  29 
  30 /**
  31  * @test
  32  * @summary Tests for the RMI unmarshalling errors not to cause silent failure.
  33  * @author Jaroslav Bachorik
  34  * @bug 6937053 8005472
  35  *
  36  * @modules java.management
  37  *          jdk.compiler
  38  *
  39  * @run clean TestSerializationMismatch
  40  * @run main/othervm TestSerializationMismatch

  41  */
  42 public class TestSerializationMismatch {
  43     static final String clientDir = "Client";
  44     static final String serverDir = "Server";
  45     static final String testSrc = System.getProperty("test.src");
  46     static final String testSrcDir = testSrc != null ? testSrc : ".";
  47     static final String testSrcClientDir = testSrcDir + File.separator + clientDir + File.separator;
  48     static final String testSrcServerDir = testSrcDir + File.separator + serverDir + File.separator;
  49     static final String testClasses = System.getProperty("test.classes");
  50     static final String testClassesDir = testClasses != null ? testClasses : ".";
  51     static final String testClassesClientDir = testClassesDir + File.separator + clientDir + File.separator;
  52     static final String testClassesServerDir = testClassesDir + File.separator + serverDir + File.separator;
  53 
  54     static final boolean debug = true;
  55 
  56     public static void main(String[] args) throws Exception {
  57         setup();
  58 
  59         compileClient();
  60         compileServer();


< prev index next >