langtools/test/com/sun/javadoc/testXOption/TestXOption.java
changeset 18005 598e2e068668
parent 9608 385a828ba236
child 23971 f5ff1f5a8dee
equal deleted inserted replaced
18004:dcf9d59b1635 18005:598e2e068668
       
     1 /*
       
     2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.
       
     8  *
       
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    12  * version 2 for more details (a copy is included in the LICENSE file that
       
    13  * accompanied this code).
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License version
       
    16  * 2 along with this work; if not, write to the Free Software Foundation,
       
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    18  *
       
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    20  * or visit www.oracle.com if you need additional information or have any
       
    21  * questions.
       
    22  */
       
    23 
       
    24 /*
       
    25  * @test
       
    26  * @bug      8007687
       
    27  * @summary  Make sure that the -X option works properly.
       
    28  * @library  ../lib/
       
    29  * @build    JavadocTester TestXOption
       
    30  * @run main TestXOption
       
    31  */
       
    32 
       
    33 public class TestXOption extends JavadocTester {
       
    34 
       
    35     //Test information.
       
    36     private static final String BUG_ID = "8007687";
       
    37 
       
    38     //Javadoc arguments.
       
    39     private static final String[] ARGS = new String[] {
       
    40         "-d", BUG_ID, "-sourcepath", SRC_DIR, "-X",
       
    41             SRC_DIR + FS + "TestXOption.java"
       
    42     };
       
    43 
       
    44     private static final String[] ARGS2 = new String[] {
       
    45         "-d", BUG_ID, "-sourcepath", SRC_DIR,
       
    46             SRC_DIR + FS + "TestXOption.java"
       
    47     };
       
    48 
       
    49     private static final String[][] TEST = {
       
    50         {NOTICE_OUTPUT, "-Xmaxerrs "},
       
    51         {NOTICE_OUTPUT, "-Xmaxwarns "},
       
    52         {STANDARD_OUTPUT, "-Xdocrootparent "},
       
    53         {STANDARD_OUTPUT, "-Xdoclint "},
       
    54         {STANDARD_OUTPUT, "-Xdoclint:"},
       
    55     };
       
    56     private static final String[][] NEGATED_TEST = NO_TEST;
       
    57 
       
    58     //The help option should not crash the doclet.
       
    59     private static final int EXPECTED_EXIT_CODE = 0;
       
    60 
       
    61     /**
       
    62      * The entry point of the test.
       
    63      * @param args the array of command line arguments.
       
    64      */
       
    65     public static void main(String[] args) {
       
    66         TestXOption tester = new TestXOption();
       
    67         int actualExitCode = run(tester, ARGS, TEST, NEGATED_TEST);
       
    68         tester.checkExitCode(EXPECTED_EXIT_CODE, actualExitCode);
       
    69         tester.printSummary();
       
    70     }
       
    71 
       
    72     /**
       
    73      * {@inheritDoc}
       
    74      */
       
    75     public String getBugId() {
       
    76         return BUG_ID;
       
    77     }
       
    78 
       
    79     /**
       
    80      * {@inheritDoc}
       
    81      */
       
    82     public String getBugName() {
       
    83         return getClass().getName();
       
    84     }
       
    85 }