8146128: compiler/cpuflags/TestAESIntrinsicsOnSupportedConfig timeouts

Test settings were changes in order to avoid timeouts

Reviewed-by: kvn
This commit is contained in:
Alexander Vorobyev 2016-09-09 19:30:08 +03:00
parent 98babf0899
commit d22c8d1b01
2 changed files with 4 additions and 4 deletions

@ -48,8 +48,8 @@ public abstract class AESIntrinsicsBase extends CommandLineOptionTest {
= {"-XX:+UnlockDiagnosticVMOptions", "-XX:+PrintIntrinsics"};
public static final String[] TEST_AES_CMD
= {"-XX:+IgnoreUnrecognizedVMOptions", "-XX:+PrintFlagsFinal",
"-Xbatch", "-DcheckOutput=true", "-Dmode=CBC",
TestAESMain.class.getName()};
"-Xbatch", "-XX:CompileThresholdScaling=0.01", "-DcheckOutput=true", "-Dmode=CBC",
TestAESMain.class.getName(), "100", "1000"};
protected AESIntrinsicsBase(BooleanSupplier predicate) {
super(predicate);

@ -27,11 +27,11 @@
* @library /test/lib /
* @modules java.base/jdk.internal.misc
* java.management
* @ignore 8146128
* @build sun.hotspot.WhiteBox
* @run driver ClassFileInstaller sun.hotspot.WhiteBox
* sun.hotspot.WhiteBox$WhiteBoxPermission
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
* @run main/othervm/timeout=600 -Xbootclasspath/a:.
* -XX:+UnlockDiagnosticVMOptions
* -XX:+WhiteBoxAPI -Xbatch
* compiler.cpuflags.TestAESIntrinsicsOnSupportedConfig
*/