8186136: [Graal] some tests setting -Djvmci.Compiler=null fail with: jdk.vm.ci.common.JVMCIError: no JVMCI compiler selected

Removed -Djvmci.Compiler=null for tests which do JIT compilation

Reviewed-by: twisti
This commit is contained in:
Vladimir Kozlov 2017-08-25 14:07:18 -07:00
parent 19af636482
commit d1bbcb5a39
6 changed files with 8 additions and 14 deletions

View file

@ -24,7 +24,7 @@
/**
* @test
* @bug 8136421
* @requires vm.jvmci & (vm.opt.TieredStopAtLevel == null | vm.opt.TieredStopAtLevel == 3)
* @requires vm.jvmci & (vm.opt.TieredStopAtLevel == null | vm.opt.TieredStopAtLevel == 4)
* @library /test/lib /
* @library ../common/patches
* @modules java.base/jdk.internal.misc
@ -40,7 +40,7 @@
* @run main/othervm -Xbootclasspath/a:.
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
* -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
* -Xmixed -Xbatch -Djvmci.Compiler=null
* -Xmixed -Xbatch
* compiler.jvmci.compilerToVM.ReprofileTest
*/