test/java/rmi/server/RemoteObject/notExtending/NotExtending.java

Print this page


   1 /*
   2  * Copyright (c) 1998, 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  */


 106 
 107             /*
 108              * Verify that passing server to stub's equals() method
 109              * returns true.  Tests bugid 4099660.
 110              */
 111             if (server.stub.equals(server)) {
 112                 System.err.println(
 113                     "Passing server to stub's equals() method succeeded.");
 114             } else {
 115                 throw new RuntimeException(
 116                     "passing server to stub's equals() method failed");
 117             }
 118 
 119         } finally {
 120             server = null;
 121             flushCachedRefs();
 122         }
 123     }
 124 
 125     /**
 126      * Force desparate garbage collection so that all sun.misc.Ref instances
 127      * will be cleared.
 128      *
 129      * This method is required with the JDK 1.1.x RMI runtime so that the
 130      * VM can exit gracefully when this test completes.  See bugid 4006356.
 131      */
 132     public static void flushCachedRefs() {
 133         java.util.Vector chain = new java.util.Vector();
 134         try {
 135             while (true) {
 136                 int[] hungry = new int[65536];
 137                 chain.addElement(hungry);
 138             }
 139         } catch (OutOfMemoryError e) {
 140         }
 141     }
 142 }
   1 /*
   2  * Copyright (c) 1998, 2014, 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  */


 106 
 107             /*
 108              * Verify that passing server to stub's equals() method
 109              * returns true.  Tests bugid 4099660.
 110              */
 111             if (server.stub.equals(server)) {
 112                 System.err.println(
 113                     "Passing server to stub's equals() method succeeded.");
 114             } else {
 115                 throw new RuntimeException(
 116                     "passing server to stub's equals() method failed");
 117             }
 118 
 119         } finally {
 120             server = null;
 121             flushCachedRefs();
 122         }
 123     }
 124 
 125     /**
 126      * Force desperate garbage collection so that soft references
 127      * will be cleared.
 128      *
 129      * This method is required with the JDK 1.1.x RMI runtime so that the
 130      * VM can exit gracefully when this test completes.  See bugid 4006356.
 131      */
 132     public static void flushCachedRefs() {
 133         java.util.Vector chain = new java.util.Vector();
 134         try {
 135             while (true) {
 136                 int[] hungry = new int[65536];
 137                 chain.addElement(hungry);
 138             }
 139         } catch (OutOfMemoryError e) {
 140         }
 141     }
 142 }