8133678: test fails due to 'CICompilerCount=0 must be at least 1' missing from stdout/stderr

We changed the constraint error message formatting for CICompilerCount, but forgot to change the corresponding test.

Reviewed-by: kbarrett, dcubed
This commit is contained in:
Gerard Ziemski 2015-08-16 09:33:52 -05:00
parent ee8e426c51
commit a00b32c815

View File

@ -68,7 +68,7 @@ public class CheckCICompilerCount {
private static final String[][] NON_TIERED_EXPECTED_OUTPUTS = {
{
"CICompilerCount=0 must be at least 1",
"CICompilerCount (0) must be at least 1",
"Improperly specified VM option 'CICompilerCount=0'"
},
{
@ -123,7 +123,7 @@ public class CheckCICompilerCount {
private static final String[][] TIERED_EXPECTED_OUTPUTS = {
{
"CICompilerCount=1 must be at least 2",
"CICompilerCount (1) must be at least 2",
"Improperly specified VM option 'CICompilerCount=1'"
},
{