author | coleenp |
Fri, 31 Aug 2018 07:03:46 -0400 | |
changeset 51608 | 625a5bdde0c5 |
parent 47216 | 71c04702a3d5 |
child 51891 | 9d9ab30af97d |
permissions | -rw-r--r-- |
813 | 1 |
/* |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
23139
diff
changeset
|
2 |
* Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved. |
813 | 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 |
* |
|
5520 | 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. |
|
813 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 6507179 |
|
27 |
* @summary Ensure that "-source" option isn't ignored. |
|
28 |
* @author Scott Seligman |
|
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
23139
diff
changeset
|
29 |
* @modules jdk.javadoc |
23139
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
30 |
* @run main/fail SourceOption 7 |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
31 |
* @run main SourceOption 9 |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
32 |
* @run main SourceOption |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
33 |
*/ |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
34 |
|
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
35 |
/* |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
36 |
* TEST NOTE |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
37 |
* With JDK9, this test has been transformed into a NEGATIVE test. |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
38 |
* |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
39 |
* Generally speaking, this test should check a feature not in at least |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
40 |
* one of the currently supported previous versions. In this manner, |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
41 |
* a failure of the -source option to be honored would mean a pass of |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
42 |
* the test, and therefore a failure of the -source option. |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
43 |
* |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
44 |
* For JDK9 and JDK10, both support 1.7, which did not support javac's |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
45 |
* lambda construct. So we set "-source 1.7" to compile a .java file |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
46 |
* containing the lambda construct. javac should fail, thus showing |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
47 |
* -source to be working. Thus the test passes. |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
48 |
* |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
49 |
* The second jtreg @run command checks to make sure that the source |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
50 |
* provided is valid for the current release of the JDK. |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
51 |
* |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
52 |
* fixVersion: JDK11 |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
53 |
* replace ./p/LambdaConstructTest.java with a missing from |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
54 |
* JDK8, JDK9, or JDK10. Set -source below appropriately. |
813 | 55 |
*/ |
56 |
||
57 |
import com.sun.javadoc.*; |
|
58 |
||
59 |
public class SourceOption extends Doclet { |
|
60 |
||
61 |
public static void main(String[] args) { |
|
23139
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
62 |
String[] params; |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
63 |
if ((args == null) || (args.length==0)) { |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
64 |
params = new String[]{"p"}; |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
65 |
System.out.println("NOTE : -source not provided, default taken"); |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
66 |
} else { |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
67 |
params = new String[]{"-source", args[0], "p"}; |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
68 |
System.out.println("NOTE : -source will be: " + args[0]); |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
69 |
} |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
70 |
|
813 | 71 |
if (com.sun.tools.javadoc.Main.execute( |
72 |
"javadoc", |
|
73 |
"SourceOption", |
|
1475 | 74 |
SourceOption.class.getClassLoader(), |
23139
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
75 |
params) != 0) |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
76 |
throw new Error("Javadoc encountered warnings or errors."); |
612191246a7d
8031670: Remove unneeded -source options in javadoc tests
darcy
parents:
5520
diff
changeset
|
77 |
|
813 | 78 |
} |
79 |
||
80 |
public static boolean start(RootDoc root) { |
|
81 |
root.classes(); // force parser into action |
|
82 |
return true; |
|
83 |
} |
|
84 |
} |