# HG changeset patch # User anoll # Date 1387531874 -3600 # Node ID 655663109d87f688c71ea6fec7a2c2483a15cb1a # Parent d1af589627d4a1d098626861c7274deb05d01683 8028052: compiler/startup/SmallCodeCacheStartup.java fails there is no 'no space to run compiler' in the output Summary: Weaken test so that configurations that have no C1 compiler pass Reviewed-by: iveresov diff -r d1af589627d4 -r 655663109d87 test/compiler/startup/SmallCodeCacheStartup.java --- a/test/compiler/startup/SmallCodeCacheStartup.java Fri Dec 20 10:29:44 2013 +0100 +++ b/test/compiler/startup/SmallCodeCacheStartup.java Fri Dec 20 10:31:14 2013 +0100 @@ -37,7 +37,6 @@ 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); } }