changeset 9645:2317b27a41d3

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
author gziemski
date Sun, 16 Aug 2015 09:33:52 -0500
parents 7a16c384cf23
children 7100bb7e213f
files test/compiler/arguments/CheckCICompilerCount.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/test/compiler/arguments/CheckCICompilerCount.java	Mon Aug 17 10:53:11 2015 +0000
+++ b/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'"
         },
         {