test/compiler/startup/NumCompilerThreadsCheck.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 8059557_open Cdiff test/compiler/startup/NumCompilerThreadsCheck.java

test/compiler/startup/NumCompilerThreadsCheck.java

Print this page

        

*** 35,45 **** public static void main(String[] args) throws Exception { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:CICompilerCount=-1"); OutputAnalyzer out = new OutputAnalyzer(pb.start()); ! String expectedOutput = "CICompilerCount of -1 is invalid"; out.shouldContain(expectedOutput); if (Platform.isZero()) { String expectedLowWaterMarkText = "must be at least 0"; out.shouldContain(expectedLowWaterMarkText); --- 35,45 ---- public static void main(String[] args) throws Exception { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-XX:CICompilerCount=-1"); OutputAnalyzer out = new OutputAnalyzer(pb.start()); ! String expectedOutput = "outside the allowed range"; out.shouldContain(expectedOutput); if (Platform.isZero()) { String expectedLowWaterMarkText = "must be at least 0"; out.shouldContain(expectedLowWaterMarkText);
test/compiler/startup/NumCompilerThreadsCheck.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File