langtools/test/jdk/javadoc/doclet/testThrowsTag/TestThrowsTag.java
changeset 41451 a847c7aa25a7
parent 36526 3b41f1c69604
equal deleted inserted replaced
41450:83877f4dd010 41451:a847c7aa25a7
    43     @Test
    43     @Test
    44     void test() {
    44     void test() {
    45         javadoc("-d", "out",
    45         javadoc("-d", "out",
    46                 "-sourcepath", testSrc,
    46                 "-sourcepath", testSrc,
    47                 "pkg");
    47                 "pkg");
    48         checkExit(Exit.FAILED);  // TODO: investigate why failed
    48         checkExit(Exit.OK);
    49 
    49 
    50         checkOutput("pkg/C.html", true,
    50         checkOutput("pkg/C.html", true,
    51             "<dd><code><a href=\"../pkg/T1.html\" title=\"class in pkg\">T1</a></code> - the first throws tag.</dd>\n" +
    51             "<dd><code><a href=\"../pkg/T1.html\" title=\"class in pkg\">T1</a></code> - the first throws tag.</dd>\n" +
    52             "<dd><code><a href=\"../pkg/T2.html\" title=\"class in pkg\">T2</a></code> - the second throws tag.</dd>\n" +
    52             "<dd><code><a href=\"../pkg/T2.html\" title=\"class in pkg\">T2</a></code> - the second throws tag.</dd>\n" +
    53             "<dd><code><a href=\"../pkg/T3.html\" title=\"class in pkg\">T3</a></code> - the third throws tag.</dd>\n" +
    53             "<dd><code><a href=\"../pkg/T3.html\" title=\"class in pkg\">T3</a></code> - the third throws tag.</dd>\n" +