Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/test/runtime/ClassFile/UnsupportedClassFileVersion.java
32285 views
/*1* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223/*24* @test25* @library /testlibrary26* @compile -XDignore.symbol.file UnsupportedClassFileVersion.java27* @run main UnsupportedClassFileVersion28*/2930import java.io.File;31import java.io.FileOutputStream;32import jdk.internal.org.objectweb.asm.ClassWriter;33import jdk.internal.org.objectweb.asm.MethodVisitor;34import jdk.internal.org.objectweb.asm.Opcodes;35import com.oracle.java.testlibrary.*;3637public class UnsupportedClassFileVersion implements Opcodes {38public static void main(String... args) throws Exception {39writeClassFile();40ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(true, "-cp", ".", "ClassFile");41OutputAnalyzer output = new OutputAnalyzer(pb.start());42output.shouldContain("ClassFile has been compiled by a more recent version of the " +43"Java Runtime (class file version 99.0), this version of " +44"the Java Runtime only recognizes class file versions up to " +45System.getProperty("java.class.version"));4647output.shouldHaveExitValue(1);48}4950public static void writeClassFile() throws Exception {51ClassWriter cw = new ClassWriter(0);52MethodVisitor mv;5354cw.visit(99, ACC_PUBLIC + ACC_SUPER, "ClassFile", null, "java/lang/Object", null);55mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null);56mv.visitCode();57mv.visitVarInsn(ALOAD, 0);58mv.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V", false);59mv.visitInsn(RETURN);60mv.visitMaxs(1, 1);61mv.visitEnd();62cw.visitEnd();6364try (FileOutputStream fos = new FileOutputStream(new File("ClassFile.class"))) {65fos.write(cw.toByteArray());66}67}68}697071