--- old/test/compiler/jvmci/compilerToVM/DoNotInlineOrCompileTest.java 2017-05-18 12:11:53.460758391 +0900 +++ new/test/compiler/jvmci/compilerToVM/DoNotInlineOrCompileTest.java 2017-05-18 12:11:53.318755794 +0900 @@ -71,10 +71,10 @@ boolean hasNeverInlineDirective = CompilerToVMHelper.hasNeverInlineDirective(method); Asserts.assertFalse(hasNeverInlineDirective, "Unexpected initial " + "value of property 'hasNeverInlineDirective'"); - CompilerToVMHelper.doNotInlineOrCompile(method); + CompilerToVMHelper.setNotInlineableOrCompileable(method); hasNeverInlineDirective = CompilerToVMHelper.hasNeverInlineDirective(method); Asserts.assertTrue(hasNeverInlineDirective, aMethod - + " : hasNeverInlineDirective is false even after doNotInlineOrCompile'"); + + " : hasNeverInlineDirective is false even after setNotInlineableOrCompileable'"); } private static List createTestCases() {