--- old/test/compiler/intrinsics/bmi/TestAndnL.java 2014-09-13 21:20:29.315892314 +0400 +++ new/test/compiler/intrinsics/bmi/TestAndnL.java 2014-09-13 21:20:29.243892317 +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(AndnLExpr.class, args, + "-XX:+IgnoreUnrecognizedVMOptions", "-XX:+UseBMI1Instructions"); BMITestRunner.runTests(AndnLCommutativeExpr.class, args, + "-XX:+IgnoreUnrecognizedVMOptions", "-XX:+UseBMI1Instructions"); }