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
rev 10547 : 8151880: EnqueueMethodForCompilationTest.java still fails to compile method
Summary: Extract SimpleTestCaseHelper inner class
Reviewed-by:

*** 37,48 **** */ public class MakeMethodNotCompilableTest extends CompilerWhiteBoxTest { private int bci; public static void main(String[] args) throws Exception { String directive = ! "[{ match:\"*SimpleTestCase$Helper.*\", BackgroundCompilation: false }, " + ! " { match:\"*.*\", inline:\"-*SimpleTestCase$Helper.*\"}]"; if (WHITE_BOX.addCompilerDirective(directive) != 2) { throw new RuntimeException("Could not add directive"); } try { CompilerWhiteBoxTest.main(MakeMethodNotCompilableTest::new, args); --- 37,48 ---- */ public class MakeMethodNotCompilableTest extends CompilerWhiteBoxTest { private int bci; public static void main(String[] args) throws Exception { String directive = ! "[{ match:\"*SimpleTestCaseHelper.*\", BackgroundCompilation: false }, " + ! " { match:\"*.*\", inline:\"-*SimpleTestCaseHelper.*\"}]"; if (WHITE_BOX.addCompilerDirective(directive) != 2) { throw new RuntimeException("Could not add directive"); } try { CompilerWhiteBoxTest.main(MakeMethodNotCompilableTest::new, args);
test/compiler/whitebox/MakeMethodNotCompilableTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File