8144160: Regression: two tests fail on Windows with "ant test" target

Reviewed-by: hannesw, mhaupt
This commit is contained in:
Athijegannathan Sundararajan 2015-11-27 13:41:40 +05:30
parent 3cbc3adb36
commit 67506cb74c

View File

@ -203,7 +203,8 @@ public class Shell implements PartialParser {
// parse options // parse options
if (args != null) { if (args != null) {
try { try {
final String[] prepArgs = preprocessArgs(args); // FIXME: preprocessArgs does not yet work fine
final String[] prepArgs = args; // preprocessArgs(args);
options.process(prepArgs); options.process(prepArgs);
} catch (final IllegalArgumentException e) { } catch (final IllegalArgumentException e) {
werr.println(bundle.getString("shell.usage")); werr.println(bundle.getString("shell.usage"));