8028052: compiler/startup/SmallCodeCacheStartup.java fails there is no 'no space to run compiler' in the output

Weaken test so that configurations that have no C1 compiler pass

Reviewed-by: iveresov
This commit is contained in:
Albert Noll 2013-12-20 10:31:14 +01:00
parent 066ad17893
commit 2eb5e0e89d

View File

@ -37,7 +37,6 @@ public class SmallCodeCacheStartup {
pb = ProcessTools.createJavaProcessBuilder("-XX:ReservedCodeCacheSize=3m", "-XX:CICompilerCount=64", "-version");
out = new OutputAnalyzer(pb.start());
out.shouldContain("no space to run compiler");
out.shouldHaveExitValue(0);
}
}