hotspot/test/compiler/compilercontrol/share/actions/CompileAction.java
changeset 33474 6a1f70c3c73e
parent 33452 04815c29859c
child 40059 c2304140ed64
--- a/hotspot/test/compiler/compilercontrol/share/actions/CompileAction.java	Tue Oct 27 18:05:20 2015 +0000
+++ b/hotspot/test/compiler/compilercontrol/share/actions/CompileAction.java	Wed Oct 28 16:00:54 2015 +0300
@@ -79,10 +79,10 @@
                     return !WHITE_BOX.isMethodQueuedForCompilation(executable);
                 }, 100L);
         execute(executable);
-        boolean isCompiled = WHITE_BOX.isMethodCompiled(executable);
-        Asserts.assertEQ(isCompiled, expectedCompiled,
-                String.format("FAILED: method %s compiled: %b, but should: %b"
-                        + " on required level: %d", executable, isCompiled,
+        boolean isCompilable = WHITE_BOX.isMethodCompilable(executable, level);
+        Asserts.assertEQ(isCompilable, expectedCompiled,
+                String.format("FAILED: method %s compilable: %b, but should: %b"
+                        + " on required level: %d", executable, isCompilable,
                         expectedCompiled, level));
     }