< prev index next >

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

Print this page
rev 11832 : 8078896: Add @modules as needed to the jdk_svc tests
Reviewed-by: alanb, mchung
   1 /*
   2  * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  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  * @run clean TestSerializationMismatch
  37  * @run main/othervm TestSerializationMismatch
  38  *
  39  */
  40 public class TestSerializationMismatch {
  41     static final String clientDir = "Client";
  42     static final String serverDir = "Server";
  43     static final String testSrc = System.getProperty("test.src");
  44     static final String testSrcDir = testSrc != null ? testSrc : ".";
  45     static final String testSrcClientDir = testSrcDir + File.separator + clientDir + File.separator;
  46     static final String testSrcServerDir = testSrcDir + File.separator + serverDir + File.separator;
  47     static final String testClasses = System.getProperty("test.classes");
  48     static final String testClassesDir = testClasses != null ? testClasses : ".";
  49     static final String testClassesClientDir = testClassesDir + File.separator + clientDir + File.separator;
  50     static final String testClassesServerDir = testClassesDir + File.separator + serverDir + File.separator;
  51 
  52     static final boolean debug = true;
  53 
  54     public static void main(String[] args) throws Exception {
  55         setup();


   1 /*
   2  * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  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();


< prev index next >