8133678: test fails due to 'CICompilerCount=0 must be at least 1' missing from stdout/stderr
authorgziemski
Sun, 16 Aug 2015 09:33:52 -0500
changeset 32365 5ac17a803e1c
parent 32364 be09a00c9e75
child 32366 4b6a0ffabffe
8133678: test fails due to 'CICompilerCount=0 must be at least 1' missing from stdout/stderr Summary: We changed the constraint error message formatting for CICompilerCount, but forgot to change the corresponding test. Reviewed-by: kbarrett, dcubed
hotspot/test/compiler/arguments/CheckCICompilerCount.java
--- a/hotspot/test/compiler/arguments/CheckCICompilerCount.java	Mon Aug 17 10:53:11 2015 +0000
+++ b/hotspot/test/compiler/arguments/CheckCICompilerCount.java	Sun Aug 16 09:33:52 2015 -0500
@@ -68,7 +68,7 @@
 
     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 @@
 
     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'"
         },
         {