8160761: [TESTBUG] Several compiler tests fail with product bits

Add UnlockDiagnosticVMOptions to tests

Reviewed-by: goetz
This commit is contained in:
Pavel Punegov 2016-07-13 19:08:07 +03:00
parent d442aea3c9
commit 684f63ba14
3 changed files with 11 additions and 11 deletions

View File

@ -29,7 +29,7 @@
* @requires vm.gc=="Serial" | vm.gc=="Parallel" * @requires vm.gc=="Serial" | vm.gc=="Parallel"
* *
* @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement * @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement
* -XX:+IgnoreUnrecognizedVMOptions -XX:+StressGCM * -XX:+UnlockDiagnosticVMOptions -XX:+IgnoreUnrecognizedVMOptions -XX:+StressGCM
* compiler.controldependency.TestEliminatedCastPPAtPhi * compiler.controldependency.TestEliminatedCastPPAtPhi
* *
*/ */

View File

@ -27,7 +27,7 @@
* @bug 8069191 * @bug 8069191
* @summary predicate moved out of loops and CastPP removal causes dependency to be lost * @summary predicate moved out of loops and CastPP removal causes dependency to be lost
* *
* @run main/othervm -Xcomp -XX:+IgnoreUnrecognizedVMOptions -XX:+StressGCM * @run main/othervm -Xcomp -XX:+IgnoreUnrecognizedVMOptions -XX:+UnlockDiagnosticVMOptions -XX:+StressGCM
* -XX:CompileCommand=compileonly,compiler.loopopts.TestPredicateLostDependency::m1 * -XX:CompileCommand=compileonly,compiler.loopopts.TestPredicateLostDependency::m1
* compiler.loopopts.TestPredicateLostDependency * compiler.loopopts.TestPredicateLostDependency
* *

View File

@ -25,15 +25,15 @@
* @test * @test
* @bug 8007898 * @bug 8007898
* @summary Incorrect optimization of Memory Barriers in Matcher::post_store_load_barrier(). * @summary Incorrect optimization of Memory Barriers in Matcher::post_store_load_barrier().
* @run main/othervm -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation * @run main/othervm -Xbatch -XX:+UnlockDiagnosticVMOptions -XX:+IgnoreUnrecognizedVMOptions
* -XX:CICompilerCount=1 -XX:+StressGCM -XX:+StressLCM * -XX:-TieredCompilation -XX:CICompilerCount=1 -XX:+StressGCM -XX:+StressLCM
* compiler.membars.DekkerTest * compiler.membars.DekkerTest
* @run main/othervm -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation * @run main/othervm -Xbatch -XX:+UnlockDiagnosticVMOptions -XX:+IgnoreUnrecognizedVMOptions
* -XX:CICompilerCount=1 -XX:+StressGCM -XX:+StressLCM * -XX:-TieredCompilation -XX:CICompilerCount=1 -XX:+StressGCM -XX:+StressLCM
* compiler.membars.DekkerTest * compiler.membars.DekkerTest
* @run main/othervm -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation * @run main/othervm -Xbatch -XX:+UnlockDiagnosticVMOptions -XX:+IgnoreUnrecognizedVMOptions
* -XX:CICompilerCount=1 -XX:+StressGCM -XX:+StressLCM * -XX:-TieredCompilation -XX:CICompilerCount=1 -XX:+StressGCM -XX:+StressLCM
* compiler.membars.DekkerTest * compiler.membars.DekkerTest
* @author Martin Doerr martin DOT doerr AT sap DOT com * @author Martin Doerr martin DOT doerr AT sap DOT com
* *
* Run 3 times since the failure is intermittent. * Run 3 times since the failure is intermittent.