Searched defs:checkArgumentParsing (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/test/tools/launcher/
H A DArrrghs.java201 void checkArgumentParsing(String inArgs, String... expArgs) throws IOException { method in class:Arrrghs
249 checkArgumentParsing("a b c d", "a", "b", "c", "d");
252 checkArgumentParsing("\"a b c d\"", "a b c d");
255 checkArgumentParsing("\"\"a b c d\"\"", "a", "b", "c", "d");
258 checkArgumentParsing("\"\"\"a b c d\"\"\"", "\"a b c d\"");
261 checkArgumentParsing("\"a\"b c d\"e\"", "ab", "c", "de");
264 checkArgumentParsing("\"\"a\"b c d\"e\"\"", "ab c de");
267 checkArgumentParsing("a\\\"b", "a\"b");
270 checkArgumentParsing("\"a b c d\\\\\"", "a b c d\\");
273 checkArgumentParsing("
[all...]

Completed in 29 milliseconds