langtools/test/com/sun/javadoc/testSeeTag/TestSeeTag.java
changeset 23971 f5ff1f5a8dee
parent 19497 407ed5b28a44
child 24065 fc4022e50129
equal deleted inserted replaced
23970:76f4acb11952 23971:f5ff1f5a8dee
     1 /*
     1 /*
     2  * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    42         "-d", OUTPUT_DIR, "-sourcepath", SRC_DIR, "pkg"
    42         "-d", OUTPUT_DIR, "-sourcepath", SRC_DIR, "pkg"
    43     };
    43     };
    44 
    44 
    45     //Input for string search tests.
    45     //Input for string search tests.
    46     private static final String[][] TEST = {
    46     private static final String[][] TEST = {
    47         { OUTPUT_DIR + FS + "pkg" + FS + "Test.html",
    47         { OUTPUT_DIR + "/pkg/Test.html",
    48           "<code>List</code>"
    48           "<code>List</code>"
    49         }
    49         }
    50     };
    50     };
    51     private static final String[][] NEGATED_TEST = {
    51     private static final String[][] NEGATED_TEST = {
    52         { OUTPUT_DIR + FS + "pkg" + FS + "Test.html",
    52         { OUTPUT_DIR + "/pkg/Test.html",
    53           "&lt;code&gt;List&lt;/code&gt;"
    53           "&lt;code&gt;List&lt;/code&gt;"
    54         }
    54         }
    55     };
    55     };
    56 
    56 
    57     /**
    57     /**