langtools/test/tools/javac/options/modes/OutputDirTest.java
changeset 34480 124ac002c969
parent 30730 d3ce7619db2c
child 40316 20b50a99fe8d
equal deleted inserted replaced
34479:2a1f2bb7cc13 34480:124ac002c969
    56     void testOutputDir(String opt) {
    56     void testOutputDir(String opt) {
    57         String[] opts = { opt, "does-not-exist"};
    57         String[] opts = { opt, "does-not-exist"};
    58         String[] files = { "src/C.java" };
    58         String[] files = { "src/C.java" };
    59 
    59 
    60         runMain(opts, files)
    60         runMain(opts, files)
    61                 .checkResult(Main.Result.CMDERR.exitCode);
    61                 .checkResult(Main.Result.OK.exitCode);
    62 
    62 
    63 // The API tests are disabled (for now) because Args.validate does
    63 // The API tests are disabled (for now) because Args.validate does
    64 // not have an easy way to access/validate file manager options,
    64 // not have an easy way to access/validate file manager options,
    65 // which are handled directly by the file manager
    65 // which are handled directly by the file manager
    66 
    66