< prev index next >

test/compiler/jvmci/TestJVMCIPrintProperties.java

Print this page




  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 TestBasicLogOutput
  26  * @summary Ensure -XX:-JVMCIPrintProperties can be enabled and successfully prints expected output to stdout.
  27  * @requires vm.jvmci
  28  * @library /test/lib
  29  */
  30 
  31 import jdk.test.lib.process.ProcessTools;
  32 import jdk.test.lib.process.OutputAnalyzer;
  33 
  34 public class TestJVMCIPrintProperties {
  35 
  36     public static void main(String[] args) throws Exception {
  37         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  38             "-XX:+UnlockExperimentalVMOptions",
  39             "-XX:+EnableJVMCI",
  40             "-XX:+JVMCIPrintProperties");
  41         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  42         output.shouldContain("[JVMCI properties]"); // expected message
  43         output.shouldContain("jvmci.Compiler = null"); // expected message
  44         output.shouldContain("jvmci.InitTimer = false"); // expected message
  45         output.shouldContain("jvmci.PrintConfig = false"); // expected message
  46         output.shouldContain("jvmci.TraceMethodDataFilter = null"); // expected message
  47         output.shouldHaveExitValue(0);
  48     }
  49 }


  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 TestBasicLogOutput
  26  * @summary Ensure -XX:-JVMCIPrintProperties can be enabled and successfully prints expected output to stdout.
  27  * @requires vm.jvmci
  28  * @library /test/lib
  29  */
  30 
  31 import jdk.test.lib.process.ProcessTools;
  32 import jdk.test.lib.process.OutputAnalyzer;
  33 
  34 public class TestJVMCIPrintProperties {
  35 
  36     public static void main(String[] args) throws Exception {
  37         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  38             "-XX:+UnlockExperimentalVMOptions",
  39             "-XX:+EnableJVMCI", "-Djvmci.Compiler=null",
  40             "-XX:+JVMCIPrintProperties");
  41         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  42         output.shouldContain("[JVMCI properties]"); // expected message
  43         output.shouldContain("jvmci.Compiler := \"null\""); // expected message
  44         output.shouldContain("jvmci.InitTimer = false"); // expected message
  45         output.shouldContain("jvmci.PrintConfig = false"); // expected message
  46         output.shouldContain("jvmci.TraceMethodDataFilter = null"); // expected message
  47         output.shouldHaveExitValue(0);
  48     }
  49 }
< prev index next >