< prev index next >

test/compiler/intrinsics/clone/TestObjectClone.java

Print this page




  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 
  25 /*
  26  * @test
  27  * @bug 8033626
  28  * @summary assert(ex_map->jvms()->same_calls_as(_exceptions->jvms())) failed: all collected exceptions must come from the same place
  29  * @library /testlibrary

  30  * @run main/othervm -XX:-TieredCompilation -Xbatch -XX:CompileOnly=TestObjectClone::f TestObjectClone
  31  */
  32 import com.oracle.java.testlibrary.Asserts;
  33 
  34 public class TestObjectClone implements Cloneable {
  35     static class A extends TestObjectClone {}
  36     static class B extends TestObjectClone {
  37         public B clone() {
  38             return (B)TestObjectClone.b;
  39         }
  40     }
  41     static class C extends TestObjectClone {
  42         public C clone() {
  43             return (C)TestObjectClone.c;
  44         }
  45     }
  46     static class D extends TestObjectClone {
  47         public D clone() {
  48             return (D)TestObjectClone.d;
  49         }




  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 
  25 /*
  26  * @test
  27  * @bug 8033626
  28  * @summary assert(ex_map->jvms()->same_calls_as(_exceptions->jvms())) failed: all collected exceptions must come from the same place
  29  * @library /testlibrary
  30  * @build com.oracle.java.testlibrary.*
  31  * @run main/othervm -XX:-TieredCompilation -Xbatch -XX:CompileOnly=TestObjectClone::f TestObjectClone
  32  */
  33 import com.oracle.java.testlibrary.Asserts;
  34 
  35 public class TestObjectClone implements Cloneable {
  36     static class A extends TestObjectClone {}
  37     static class B extends TestObjectClone {
  38         public B clone() {
  39             return (B)TestObjectClone.b;
  40         }
  41     }
  42     static class C extends TestObjectClone {
  43         public C clone() {
  44             return (C)TestObjectClone.c;
  45         }
  46     }
  47     static class D extends TestObjectClone {
  48         public D clone() {
  49             return (D)TestObjectClone.d;
  50         }


< prev index next >