test/compiler/whitebox/MakeMethodNotCompilableTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff test/compiler/whitebox/MakeMethodNotCompilableTest.java

test/compiler/whitebox/MakeMethodNotCompilableTest.java

Print this page

        

*** 23,33 **** /* * @test MakeMethodNotCompilableTest * @bug 8012322 8006683 8007288 8022832 * @library /testlibrary /testlibrary/whitebox - * @ignore 8046268 * @build MakeMethodNotCompilableTest * @run main ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm/timeout=2400 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:CompileCommand=compileonly,SimpleTestCase$Helper::* MakeMethodNotCompilableTest * @summary testing of WB::makeMethodNotCompilable() --- 23,32 ----
*** 138,148 **** if (isCompilable()) { throw new RuntimeException(method + " must be not compilable"); } compile(); ! checkNotCompiled(); if (isCompilable()) { throw new RuntimeException(method + " must be not compilable"); } // WB.clearMethodState() must reset no-compilable flags WHITE_BOX.clearMethodState(method); --- 137,147 ---- if (isCompilable()) { throw new RuntimeException(method + " must be not compilable"); } compile(); ! checkNotOsrCompiled(); if (isCompilable()) { throw new RuntimeException(method + " must be not compilable"); } // WB.clearMethodState() must reset no-compilable flags WHITE_BOX.clearMethodState(method);
test/compiler/whitebox/MakeMethodNotCompilableTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File