author | ascarpino |
Fri, 12 May 2017 08:20:11 -0700 | |
changeset 45992 | 38bdf44057b9 |
parent 30730 | d3ce7619db2c |
child 45742 | 36bf0f2436ad |
permissions | -rw-r--r-- |
8633
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
1 |
/* |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
8633
diff
changeset
|
2 |
* Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. |
8633
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
4 |
* |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
8 |
* |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
13 |
* accompanied this code). |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
14 |
* |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
18 |
* |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
21 |
* questions. |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
22 |
*/ |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
23 |
|
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
24 |
/* |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
25 |
* @test |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
26 |
* @bug 6968833 |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
27 |
* @summary javadoc reports error but still returns 0 |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
8633
diff
changeset
|
28 |
* @modules jdk.javadoc |
8633
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
29 |
*/ |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
30 |
|
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
31 |
import java.io.*; |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
32 |
|
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
33 |
public class T6968833 { |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
34 |
public static void main(String... args) throws IOException { |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
35 |
new T6968833().run(); |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
36 |
} |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
37 |
|
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
38 |
void run() throws IOException { |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
39 |
File srcDir = new File("src"); |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
40 |
// following file causes error: No public or protected classes found to document. |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
41 |
File f = writeFile(srcDir, "Foo.java", "class Foo { }"); |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
42 |
String[] args = { f.getPath() }; |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
43 |
int rc = com.sun.tools.javadoc.Main.execute(args); |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
44 |
if (rc == 0) |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
45 |
throw new Error("Unexpected exit from javadoc: " + rc); |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
46 |
} |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
47 |
|
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
48 |
File writeFile(File dir, String path, String s) throws IOException { |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
49 |
File f = new File(dir, path); |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
50 |
f.getParentFile().mkdirs(); |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
51 |
try (Writer out = new FileWriter(f)) { |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
52 |
out.write(s); |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
53 |
} |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
54 |
return f; |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
55 |
} |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
56 |
} |
41311e88ffb7
6964914: javadoc does not output number of warnings using user written doclet
jjg
parents:
diff
changeset
|
57 |