< prev index next >

test/compiler/jvmci/compilerToVM/MethodIsIgnoredBySecurityStackWalkTest.java

Print this page




  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  * @test
  26  * @bug 8136421
  27  * @requires vm.jvmci
  28  * @library /test/lib /
  29  * @library ../common/patches
  30  * @modules java.base/jdk.internal.misc
  31  * @modules java.base/jdk.internal.reflect
  32  *          java.base/jdk.internal.org.objectweb.asm
  33  *          java.base/jdk.internal.org.objectweb.asm.tree
  34  *          jdk.internal.vm.ci/jdk.vm.ci.hotspot
  35  *          jdk.internal.vm.ci/jdk.vm.ci.code
  36  * @build jdk.internal.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  37  * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI

  38  *                   compiler.jvmci.compilerToVM.MethodIsIgnoredBySecurityStackWalkTest
  39  */
  40 
  41 package compiler.jvmci.compilerToVM;
  42 
  43 import compiler.jvmci.common.CTVMUtilities;
  44 import jdk.test.lib.Asserts;
  45 import jdk.vm.ci.hotspot.CompilerToVMHelper;
  46 import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
  47 
  48 import java.lang.reflect.Executable;
  49 import java.lang.reflect.Method;
  50 import java.util.HashMap;
  51 import java.util.Map;
  52 
  53 public class MethodIsIgnoredBySecurityStackWalkTest {
  54 
  55     public static void main(String[] args) {
  56         Map<Executable, Boolean> testCases = createTestCases();
  57         testCases.forEach(




  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  * @test
  26  * @bug 8136421
  27  * @requires vm.jvmci
  28  * @library /test/lib /
  29  * @library ../common/patches
  30  * @modules java.base/jdk.internal.misc
  31  * @modules java.base/jdk.internal.reflect
  32  *          java.base/jdk.internal.org.objectweb.asm
  33  *          java.base/jdk.internal.org.objectweb.asm.tree
  34  *          jdk.internal.vm.ci/jdk.vm.ci.hotspot
  35  *          jdk.internal.vm.ci/jdk.vm.ci.code
  36  * @build jdk.internal.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  37  * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  38  *                   -Djvmci.Compiler=null
  39  *                   compiler.jvmci.compilerToVM.MethodIsIgnoredBySecurityStackWalkTest
  40  */
  41 
  42 package compiler.jvmci.compilerToVM;
  43 
  44 import compiler.jvmci.common.CTVMUtilities;
  45 import jdk.test.lib.Asserts;
  46 import jdk.vm.ci.hotspot.CompilerToVMHelper;
  47 import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
  48 
  49 import java.lang.reflect.Executable;
  50 import java.lang.reflect.Method;
  51 import java.util.HashMap;
  52 import java.util.Map;
  53 
  54 public class MethodIsIgnoredBySecurityStackWalkTest {
  55 
  56     public static void main(String[] args) {
  57         Map<Executable, Boolean> testCases = createTestCases();
  58         testCases.forEach(


< prev index next >