8166275: vm/mlvm/meth/stress/compiler/deoptimize keeps timeouting

Reviewed-by: kvn
This commit is contained in:
Ekaterina Pavlova 2019-10-24 11:25:53 -07:00
parent d157ebb41c
commit 0501511825
2 changed files with 25 additions and 2 deletions

View File

@ -194,7 +194,6 @@ vmTestbase/jit/escape/LockCoarsening/LockCoarsening002/TestDescription.java 8208
vmTestbase/vm/mlvm/indy/func/jvmti/redefineClassInBootstrap/TestDescription.java 8013267 generic-all
vmTestbase/vm/mlvm/meth/func/java/throwException/Test.java 8058176 generic-all
vmTestbase/vm/mlvm/meth/func/jdi/breakpointOtherStratum/Test.java 8208257,8058176 generic-all
vmTestbase/vm/mlvm/meth/stress/compiler/deoptimize/Test.java 8058176 generic-all
vmTestbase/vm/mlvm/meth/stress/compiler/i2c_c2i/Test.java 8058176 generic-all
vmTestbase/vm/mlvm/meth/stress/compiler/sequences/Test.java 8058176 generic-all
vmTestbase/vm/mlvm/meth/stress/gc/callSequencesDuringGC/Test.java 8058176 generic-all

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2011, 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
@ -42,6 +42,8 @@
* @build vm.mlvm.meth.stress.compiler.deoptimize.Test
* @run driver vm.mlvm.share.IndifiedClassesBuilder
*
* @requires vm.debug != true
*
* @run main/othervm
* -XX:ReservedCodeCacheSize=100m
* vm.mlvm.meth.stress.compiler.deoptimize.Test
@ -49,6 +51,28 @@
* -threadsExtra 2
*/
/*
* @test
*
* @library /vmTestbase
* /test/lib
* @run driver jdk.test.lib.FileInstaller . .
*
* @comment build test class and indify classes
* @build vm.mlvm.meth.stress.compiler.deoptimize.Test
* @run driver vm.mlvm.share.IndifiedClassesBuilder
*
* @requires vm.debug == true
*
* @run main/othervm
* -XX:ReservedCodeCacheSize=100m
* vm.mlvm.meth.stress.compiler.deoptimize.Test
* -threadsPerCpu 2
* -threadsExtra 2
*/
package vm.mlvm.meth.stress.compiler.deoptimize;
import java.lang.invoke.MethodHandle;