8161173: quarantine compiler/arraycopy/TestEliminatedArrayCopyDeopt.java

8161174: quarantine gc/stress/TestStressG1Humongous.java on 32-bit
8161175: quarantine serviceability/dcmd/compiler/CompilerQueueTest.java on 32-bit

Reviewed-by: sspitsyn, jmasa, gtriantafill
This commit is contained in:
Daniel D. Daugherty 2016-07-18 14:20:30 -07:00
parent a40bbfadaf
commit c0e5b2646f
3 changed files with 8 additions and 1 deletions

View File

@ -25,6 +25,7 @@
* @test
* @bug 8130847 8156760
* @summary Eliminated instance/array written to by an array copy variant must be correctly initialized when reallocated at a deopt
* @ignore 8136818
* @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement TestEliminatedArrayCopyDeopt
* @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:+IgnoreUnrecognizedVMOptions -XX:-ReduceInitialCardMarks TestEliminatedArrayCopyDeopt
*/

View File

@ -26,6 +26,9 @@
* @key gc
* @key stress
* @summary Stress G1 by humongous allocations in situation near OOM
* Fails intermittently on 32-bit VMs due to 8160827 so quarantine
* it on those platforms:
* @requires vm.bits != "32"
* @requires vm.gc.G1
* @requires !vm.flightRecorder
* @run main/othervm/timeout=200 -Xlog:gc=debug -Xmx1g -XX:+UseG1GC -XX:G1HeapRegionSize=4m

View File

@ -29,6 +29,10 @@
* java.compiler
* java.management
* jdk.jvmstat/sun.jvmstat.monitor
* @summary Test of diagnostic command Compiler.queue
* Fails intermittently on 32-bit VMs due to 8158756 so quarantine
* it on those platforms:
* @requires vm.bits != "32"
* @build jdk.test.lib.*
* jdk.test.lib.dcmd.*
* sun.hotspot.WhiteBox
@ -38,7 +42,6 @@
* @run testng/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -Xmixed -XX:+WhiteBoxAPI CompilerQueueTest
* @run testng/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -Xmixed -XX:-TieredCompilation -XX:+WhiteBoxAPI CompilerQueueTest
* @run testng/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -Xint -XX:+WhiteBoxAPI CompilerQueueTest
* @summary Test of diagnostic command Compiler.queue
*/
import compiler.testlibrary.CompilerUtils;