Skip to content

Commit

Permalink
8342295: compiler/jvmci/TestJVMCISavedProperties.java fails due to ga…
Browse files Browse the repository at this point in the history
…rbage in output
  • Loading branch information
Tomas Zezula committed Oct 18, 2024
1 parent 28252bb commit 7849ba6
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,13 @@ public static void main(String[] args) throws Exception {
ProcessBuilder pb = ProcessTools.createLimitedTestJavaProcessBuilder(
"-XX:+UnlockExperimentalVMOptions",
"-XX:+EagerJVMCI",
"-XX:+UseJVMCICompiler",
"-Djvmci.Compiler=null",
"-XX:+EnableJVMCI",
"-Ddebug.jvmci.PrintSavedProperties=true",
"-Dapp1.propX=true",
"-Dapp2.propY=SomeStringValue",
"TestJVMCISavedProperties", "true");
OutputAnalyzer output = new OutputAnalyzer(pb.start());
output.stdoutShouldContain("debug.jvmci.PrintSavedProperties=true");
output.stdoutShouldContain("jvmci.Compiler=null");
output.stdoutShouldContain("app1.propX=true");
output.stdoutShouldContain("app2.propY=SomeStringValue");
output.stdoutShouldContain("java.specification.version=" + Runtime.version().feature());
Expand Down

0 comments on commit 7849ba6

Please sign in to comment.