aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranoll <none@none>2013-12-20 10:31:14 +0100
committeranoll <none@none>2013-12-20 10:31:14 +0100
commit0446329f1edf17198c422cb02852d43d921273c2 (patch)
tree7b2c0287e61defcfb29af41ab4cac08389e42c56
parent74cb43e1595eb4397f9f00b379fd16f6523a093c (diff)
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
-rw-r--r--test/compiler/startup/SmallCodeCacheStartup.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/compiler/startup/SmallCodeCacheStartup.java b/test/compiler/startup/SmallCodeCacheStartup.java
index 74b2b762c..7a9a11a08 100644
--- a/test/compiler/startup/SmallCodeCacheStartup.java
+++ b/test/compiler/startup/SmallCodeCacheStartup.java
@@ -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);
}
}