diff test/compiler/whitebox/DeoptimizeAllTest.java @ 8766:4efac99a998b

8008211: Some of WB tests on compiler fail Reviewed-by: kvn, vlivanov
author iignatyev
date Mon, 18 Mar 2013 04:29:08 -0700
parents 1b0dc9f87e75
children b84fd7d73702
line wrap: on
line diff
--- a/test/compiler/whitebox/DeoptimizeAllTest.java	Sat Mar 16 21:44:52 2013 -0700
+++ b/test/compiler/whitebox/DeoptimizeAllTest.java	Mon Mar 18 04:29:08 2013 -0700
@@ -32,12 +32,12 @@
 public class DeoptimizeAllTest extends CompilerWhiteBoxTest {
 
     public static void main(String[] args) throws Exception {
+        // to prevent inlining #method into #compile()
+        WHITE_BOX.setDontInlineMethod(METHOD, true);
         new DeoptimizeAllTest().runTest();
     }
 
     protected void test() throws Exception {
-        // to prevent inlining #method into #compile()
-        WHITE_BOX.setDontInlineMethod(METHOD, true);
         compile();
         checkCompiled(METHOD);
         WHITE_BOX.deoptimizeAll();