--- old/test/compiler/intrinsics/bmi/TestBlsmskI.java 2014-09-13 21:20:30.551892259 +0400 +++ new/test/compiler/intrinsics/bmi/TestBlsmskI.java 2014-09-13 21:20:30.483892262 +0400 @@ -41,14 +41,14 @@ public static void main(String args[]) throws Throwable { if (!CPUInfo.hasFeature("bmi1")) { - System.out.println("CPU does not support bmi1 feature. " + - "Test skipped."); - return; + System.out.println("INFO: CPU does not support bmi1 feature."); } BMITestRunner.runTests(BlsmskIExpr.class, args, + "-XX:+IgnoreUnrecognizedVMOptions", "-XX:+UseBMI1Instructions"); BMITestRunner.runTests(BlsmskICommutativeExpr.class, args, + "-XX:+IgnoreUnrecognizedVMOptions", "-XX:+UseBMI1Instructions"); }