test/compiler/arguments/BMICommandLineOptionTestBase.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8038924 Cdiff test/compiler/arguments/BMICommandLineOptionTestBase.java

test/compiler/arguments/BMICommandLineOptionTestBase.java

Print this page
rev 6404 : 8038924: Test bit-instructions fails with unexpected exit value on sparc
Reviewed-by: iignatyev
Contributed-by: filipp.zhinkin@oracle.com

*** 58,68 **** String supportedCPUFeatures[], String unsupportedCPUFeatures[]) { super(".*", supportedCPUFeatures, unsupportedCPUFeatures); this.optionName = optionName; this.warningMessage = warningMessage; ! this.errorMessage = CommandLineOptionTest. ! UNRECOGNIZED_OPTION_ERROR_FORMAT.format(optionName); } } --- 58,69 ---- String supportedCPUFeatures[], String unsupportedCPUFeatures[]) { super(".*", supportedCPUFeatures, unsupportedCPUFeatures); this.optionName = optionName; this.warningMessage = warningMessage; ! this.errorMessage = String.format( ! CommandLineOptionTest.UNRECOGNIZED_OPTION_ERROR_FORMAT, ! optionName); } }
test/compiler/arguments/BMICommandLineOptionTestBase.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File