|
Lines 329-334
Link Here
|
| 329 |
buffer.append(" ").append(arg).append(" = ").append(dir).append('\n'); |
329 |
buffer.append(" ").append(arg).append(" = ").append(dir).append('\n'); |
| 330 |
continue; |
330 |
continue; |
| 331 |
} |
331 |
} |
|
|
332 |
if (arg.equals("-components")) { |
| 333 |
String components = args[i + 1]; |
| 334 |
if (components.startsWith("-")) { |
| 335 |
System.out.println("Missing value for "+arg+" parameter"); |
| 336 |
printUsage(); |
| 337 |
} |
| 338 |
String[] names = components.split(","); |
| 339 |
Arrays.sort(names); |
| 340 |
int length = names.length; |
| 341 |
buffer.append(" ").append(arg).append(" = "); |
| 342 |
for (int j=0; j<length; j++) { |
| 343 |
if (j>0) buffer.append(','); |
| 344 |
buffer.append(names[j]); |
| 345 |
} |
| 346 |
DB_Results.SUPPORTED_COMPONENTS = names; |
| 347 |
buffer.append('\n'); |
| 348 |
i++; |
| 349 |
continue; |
| 350 |
} |
| 332 |
if (arg.equals("-config")) { |
351 |
if (arg.equals("-config")) { |
| 333 |
String configs = args[i + 1]; |
352 |
String configs = args[i + 1]; |
| 334 |
if (configs.startsWith("-")) { |
353 |
if (configs.startsWith("-")) { |
|
Lines 762-767
Link Here
|
| 762 |
" Optional. Build id prefix used in baseline test builds and |
781 |
" Optional. Build id prefix used in baseline test builds and |
| 763 |
" A common prefix used for the value of the \"build\" key in the |
782 |
" A common prefix used for the value of the \"build\" key in the |
|
|
783 |
"-components\n" + |
| 784 |
" Comma separated list of component names for which to generate |
| 785 |
|
| 764 |
"-current\n" + |
786 |
"-current\n" + |
| 765 |
" build id for which to generate results. Compared to build id |
787 |
" build id for which to generate results. Compared to build id |
| 766 |
" Same as value specified for the \"build\" key in the |
788 |
" Same as value specified for the \"build\" key in the |