< prev index next >

test/compiler/compilercontrol/TestCompilerDirectivesCompatibilityFlag.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test TestCompilerDirectivesCompatibilityFlag
  26  * @bug 8137167
  27  * @library /testlibrary /test/lib /
  28  * @modules java.base/jdk.internal.misc
  29  *          java.compiler
  30  *          java.management

  31  * @build jdk.test.lib.*
  32  *        jdk.test.lib.dcmd.*
  33  *        sun.hotspot.WhiteBox
  34  *        compiler.testlibrary.CompilerUtils

  35  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  36  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  37  * @run testng/othervm -Xbootclasspath/a:. -Xmixed -XX:+UnlockDiagnosticVMOptions
  38  *      -XX:+PrintAssembly -XX:+WhiteBoxAPI TestCompilerDirectivesCompatibilityFlag

  39  * @summary Test compiler control compatibility with compile command
  40  */
  41 


  42 import jdk.test.lib.dcmd.CommandExecutor;
  43 import jdk.test.lib.dcmd.JMXExecutor;
  44 
  45 import org.testng.annotations.Test;
  46 import org.testng.Assert;
  47 
  48 import sun.hotspot.WhiteBox;
  49 
  50 import java.io.BufferedReader;
  51 import java.io.File;
  52 import java.io.StringReader;
  53 import java.lang.reflect.Method;
  54 import java.util.Objects;
  55 
  56 public class TestCompilerDirectivesCompatibilityFlag extends TestCompilerDirectivesCompatibilityBase {
  57 
  58     public void testCompatibility(CommandExecutor executor, int comp_level) throws Exception {
  59 
  60         // Call all validation twice to catch error when overwriting a directive
  61         // Flag is default on
  62         expect(WB.getBooleanVMFlag("PrintAssembly"));
  63         expect(WB.shouldPrintAssembly(method, comp_level));
  64         expect(WB.shouldPrintAssembly(nomatch, comp_level));
  65         expect(WB.shouldPrintAssembly(method, comp_level));
  66         expect(WB.shouldPrintAssembly(nomatch, comp_level));
  67 
  68         // load directives that turn it off
  69         executor.execute("Compiler.directives_add " + control_off);
  70         expect(!WB.shouldPrintAssembly(method, comp_level));
  71         expect(WB.shouldPrintAssembly(nomatch, comp_level));
  72         expect(!WB.shouldPrintAssembly(method, comp_level));
  73         expect(WB.shouldPrintAssembly(nomatch, comp_level));
  74 
  75         // remove and see that it is true again


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test TestCompilerDirectivesCompatibilityFlag
  26  * @bug 8137167
  27  * @library /testlibrary /test/lib /
  28  * @modules java.base/jdk.internal.misc
  29  *          java.compiler
  30  *          java.management
  31  *
  32  * @build jdk.test.lib.*
  33  *        jdk.test.lib.dcmd.*
  34  *        sun.hotspot.WhiteBox
  35  *        compiler.testlibrary.CompilerUtils
  36  *        compiler.compilercontrol.TestCompilerDirectivesCompatibilityFlag
  37  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  38  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  39  * @run testng/othervm -Xbootclasspath/a:. -Xmixed -XX:+UnlockDiagnosticVMOptions
  40  *      -XX:+PrintAssembly -XX:+WhiteBoxAPI
  41  *      compiler.compilercontrol.TestCompilerDirectivesCompatibilityFlag
  42  * @summary Test compiler control compatibility with compile command
  43  */
  44 
  45 package compiler.compilercontrol;
  46 
  47 import jdk.test.lib.dcmd.CommandExecutor;

  48 











  49 public class TestCompilerDirectivesCompatibilityFlag extends TestCompilerDirectivesCompatibilityBase {
  50 
  51     public void testCompatibility(CommandExecutor executor, int comp_level) throws Exception {
  52 
  53         // Call all validation twice to catch error when overwriting a directive
  54         // Flag is default on
  55         expect(WB.getBooleanVMFlag("PrintAssembly"));
  56         expect(WB.shouldPrintAssembly(method, comp_level));
  57         expect(WB.shouldPrintAssembly(nomatch, comp_level));
  58         expect(WB.shouldPrintAssembly(method, comp_level));
  59         expect(WB.shouldPrintAssembly(nomatch, comp_level));
  60 
  61         // load directives that turn it off
  62         executor.execute("Compiler.directives_add " + control_off);
  63         expect(!WB.shouldPrintAssembly(method, comp_level));
  64         expect(WB.shouldPrintAssembly(nomatch, comp_level));
  65         expect(!WB.shouldPrintAssembly(method, comp_level));
  66         expect(WB.shouldPrintAssembly(nomatch, comp_level));
  67 
  68         // remove and see that it is true again
< prev index next >