JDK-8034775 makes impossible to create VM w/ enabled tiered compilation and CICompilerCount explicitly set to 1:
CICompilerCount of 1 is invalid; must be at least 2
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
suggested fix:
diff --git a/test/compiler/ciReplay/common.sh b/test/compiler/ciReplay/common.sh
--- a/test/compiler/ciReplay/common.sh
+++ b/test/compiler/ciReplay/common.sh
@@ -218,7 +218,7 @@
-XX:VMThreadStackSize=512 \
-XX:CompilerThreadStackSize=512 \
-XX:ParallelGCThreads=1 \
- -XX:CICompilerCount=1 \
+ -XX:CICompilerCount=2 \
-Xcomp \
-XX:CICrashAt=1 \
-XX:+CreateMinidumpOnCrash \