--- old/test/hotspot/jtreg/runtime/CommandLine/VMOptionWarning.java 2018-10-30 13:52:29.000000000 -0700 +++ new/test/hotspot/jtreg/runtime/CommandLine/VMOptionWarning.java 2018-10-30 13:52:29.000000000 -0700 @@ -53,8 +53,8 @@ output = new OutputAnalyzer(pb.start()); output.shouldContain("Error: VM option 'VerifyStack' is develop and is available only in debug version of VM."); - pb = ProcessTools.createJavaProcessBuilder("-XX:+ExecuteInternalVMTests", "-version"); + pb = ProcessTools.createJavaProcessBuilder("-XX:+CheckCompressedOops", "-version"); output = new OutputAnalyzer(pb.start()); - output.shouldContain("Error: VM option 'ExecuteInternalVMTests' is notproduct and is available only in debug version of VM."); + output.shouldContain("Error: VM option 'CheckCompressedOops' is notproduct and is available only in debug version of VM."); } }