OpenJDK / amber / amber
changeset 56688:14283f280695
8225350: compiler/jvmci/compilerToVM/IsCompilableTest.java timed out
Reviewed-by: iignatyev
author | kvn |
---|---|
date | Fri, 07 Jun 2019 13:57:08 -0700 |
parents | 3493c1bc59fd |
children | 357c9dcb6eb9 |
files | test/hotspot/jtreg/compiler/jvmci/TestJVMCIPrintProperties.java test/hotspot/jtreg/compiler/jvmci/compilerToVM/IsCompilableTest.java test/hotspot/jtreg/compiler/jvmci/compilerToVM/MaterializeVirtualObjectTest.java test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyBootstrapFinishedEventTest.java test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyInstallEventTest.java test/hotspot/jtreg/runtime/appcds/GraalWithLimitedMetaspace.java |
diffstat | 6 files changed, 17 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/test/hotspot/jtreg/compiler/jvmci/TestJVMCIPrintProperties.java Fri Jun 07 12:26:50 2019 -0700 +++ b/test/hotspot/jtreg/compiler/jvmci/TestJVMCIPrintProperties.java Fri Jun 07 13:57:08 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -25,7 +25,7 @@ * @test TestBasicLogOutput * @bug 8203370 * @summary Ensure -XX:-JVMCIPrintProperties can be enabled and successfully prints expected output to stdout. - * @requires vm.jvmci + * @requires vm.jvmci & !vm.graal.enabled & vm.compMode == "Xmixed" * @library /test/lib */
--- a/test/hotspot/jtreg/compiler/jvmci/compilerToVM/IsCompilableTest.java Fri Jun 07 12:26:50 2019 -0700 +++ b/test/hotspot/jtreg/compiler/jvmci/compilerToVM/IsCompilableTest.java Fri Jun 07 13:57:08 2019 -0700 @@ -24,7 +24,7 @@ /** * @test * @bug 8136421 - * @requires vm.jvmci + * @requires vm.jvmci & vm.compMode == "Xmixed" * @library /test/lib / * @library ../common/patches * @modules java.base/jdk.internal.misc
--- a/test/hotspot/jtreg/compiler/jvmci/compilerToVM/MaterializeVirtualObjectTest.java Fri Jun 07 12:26:50 2019 -0700 +++ b/test/hotspot/jtreg/compiler/jvmci/compilerToVM/MaterializeVirtualObjectTest.java Fri Jun 07 13:57:08 2019 -0700 @@ -25,11 +25,11 @@ * @test * @bug 8136421 * - * @requires vm.jvmci + * @requires vm.jvmci & vm.compMode == "Xmixed" * @requires vm.opt.final.EliminateAllocations == true * * @comment no "-Xcomp -XX:-TieredCompilation" combination allowed until JDK-8140018 is resolved - * @requires vm.compMode != "Xcomp" | vm.opt.TieredCompilation == null | vm.opt.TieredCompilation == true + * @requires vm.opt.TieredCompilation == null | vm.opt.TieredCompilation == true * * @library / /test/lib * @library ../common/patches @@ -44,7 +44,7 @@ * @build jdk.internal.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper sun.hotspot.WhiteBox * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission - * @run main/othervm -Xmixed -Xbatch -Xbootclasspath/a:. + * @run main/othervm -Xbatch -Xbootclasspath/a:. * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI * -XX:CompileCommand=exclude,compiler.jvmci.compilerToVM.MaterializeVirtualObjectTest::check @@ -56,7 +56,7 @@ * -Dcompiler.jvmci.compilerToVM.MaterializeVirtualObjectTest.materializeFirst=true * -Dcompiler.jvmci.compilerToVM.MaterializeVirtualObjectTest.invalidate=false * compiler.jvmci.compilerToVM.MaterializeVirtualObjectTest - * @run main/othervm -Xmixed -Xbatch -Xbootclasspath/a:. + * @run main/othervm -Xbatch -Xbootclasspath/a:. * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI * -XX:CompileCommand=exclude,compiler.jvmci.compilerToVM.MaterializeVirtualObjectTest::check @@ -68,7 +68,7 @@ * -Dcompiler.jvmci.compilerToVM.MaterializeVirtualObjectTest.materializeFirst=false * -Dcompiler.jvmci.compilerToVM.MaterializeVirtualObjectTest.invalidate=false * compiler.jvmci.compilerToVM.MaterializeVirtualObjectTest - * @run main/othervm -Xmixed -Xbatch -Xbootclasspath/a:. + * @run main/othervm -Xbatch -Xbootclasspath/a:. * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI * -XX:CompileCommand=exclude,compiler.jvmci.compilerToVM.MaterializeVirtualObjectTest::check @@ -80,7 +80,7 @@ * -Dcompiler.jvmci.compilerToVM.MaterializeVirtualObjectTest.materializeFirst=true * -Dcompiler.jvmci.compilerToVM.MaterializeVirtualObjectTest.invalidate=true * compiler.jvmci.compilerToVM.MaterializeVirtualObjectTest - * @run main/othervm -Xmixed -Xbatch -Xbootclasspath/a:. + * @run main/othervm -Xbatch -Xbootclasspath/a:. * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI * -XX:CompileCommand=exclude,compiler.jvmci.compilerToVM.MaterializeVirtualObjectTest::check
--- a/test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyBootstrapFinishedEventTest.java Fri Jun 07 12:26:50 2019 -0700 +++ b/test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyBootstrapFinishedEventTest.java Fri Jun 07 13:57:08 2019 -0700 @@ -24,7 +24,7 @@ /** * @test * @bug 8156034 - * @requires vm.jvmci & !vm.graal.enabled + * @requires vm.jvmci & !vm.graal.enabled & vm.compMode == "Xmixed" * @library / /test/lib * @library ../common/patches * @modules java.base/jdk.internal.misc
--- a/test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyInstallEventTest.java Fri Jun 07 12:26:50 2019 -0700 +++ b/test/hotspot/jtreg/compiler/jvmci/events/JvmciNotifyInstallEventTest.java Fri Jun 07 13:57:08 2019 -0700 @@ -24,7 +24,7 @@ /* * @test * @bug 8136421 - * @requires vm.jvmci & !vm.graal.enabled + * @requires vm.jvmci & !vm.graal.enabled & vm.compMode == "Xmixed" * @library / /test/lib * @library ../common/patches * @modules java.base/jdk.internal.misc @@ -47,11 +47,11 @@ * compiler.jvmci.common.JVMCIHelpers$EmptyCompilationRequestResult * compiler.jvmci.common.JVMCIHelpers$EmptyVMEventListener * @run main/othervm -XX:+UnlockExperimentalVMOptions - * -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:. -Xmixed + * -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:. * -XX:+UseJVMCICompiler -XX:-BootstrapJVMCI * compiler.jvmci.events.JvmciNotifyInstallEventTest * @run main/othervm -XX:+UnlockExperimentalVMOptions - * -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:. -Xmixed + * -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:. * -XX:+UseJVMCICompiler -XX:-BootstrapJVMCI -XX:JVMCINMethodSizeLimit=0 * compiler.jvmci.events.JvmciNotifyInstallEventTest */
--- a/test/hotspot/jtreg/runtime/appcds/GraalWithLimitedMetaspace.java Fri Jun 07 12:26:50 2019 -0700 +++ b/test/hotspot/jtreg/runtime/appcds/GraalWithLimitedMetaspace.java Fri Jun 07 13:57:08 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -26,7 +26,7 @@ * @test * @summary Test dumping with limited metaspace with loading of JVMCI related classes. * VM should not crash but CDS dump will abort upon failure in allocating metaspace. - * @requires vm.cds & vm.graal.enabled + * @requires vm.cds & vm.graal.enabled & vm.compMode == "Xmixed" * @library /test/lib * @modules java.base/jdk.internal.misc * java.management @@ -90,6 +90,8 @@ "-XX:DumpLoadedClassList=" + CLASSLIST_FILE, // trigger JVMCI runtime init so that JVMCI classes will be // included in the classlist + "-XX:+UnlockExperimentalVMOptions", + "-XX:+EnableJVMCI", "-XX:+EagerJVMCI", "-cp", TESTJAR,