24 |
$HOME/jdk/src/jdk9 |
$HOME/jdk/src/jdk9 |
25 |
where each of the above is a complete JDK source tree |
where each of the above is a complete JDK source tree |
26 |
(e.g. mercurial forest) or a symlink to same. |
(e.g. mercurial forest) or a symlink to same. |
27 |
|
|
28 |
|
Alternatively, define ant variables thus: |
29 |
|
ant -Djdk$N.home=... |
30 |
|
for $N in 6 7 8 9 ... |
31 |
------------------------------------------------------------------------------ |
------------------------------------------------------------------------------ |
32 |
</description> |
</description> |
33 |
|
|
50 |
<property name="build.deprecation" value="false"/> |
<property name="build.deprecation" value="false"/> |
51 |
<property name="build.javadoc.access" value="protected"/> |
<property name="build.javadoc.access" value="protected"/> |
52 |
|
|
53 |
<!-- Tck options; see JSR166TestCase.java --> |
<!-- Tck options; see JSR166TestCase.java |
54 |
<!-- ant -Djsr166.profileTests=true -Djsr166.runsPerTest=100 test-tck --> |
To profile a single tck test class: |
55 |
|
ant -Djsr166.profileTests=true -Djsr166.profileThreshold=100 -Djsr166.tckTestClass=CompletableFutureTest test-tck |
56 |
|
To stress test a single tck test class: |
57 |
|
ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 test-tck |
58 |
|
--> |
59 |
<property name="jsr166.profileTests" value="false"/> |
<property name="jsr166.profileTests" value="false"/> |
60 |
<property name="jsr166.profileThreshold" value="100"/> |
<property name="jsr166.profileThreshold" value="100"/> |
61 |
<property name="jsr166.runsPerTest" value="1"/> |
<property name="jsr166.runsPerTest" value="1"/> |
|
<!-- Allow running an individual tck test class --> |
|
|
<!-- ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 test-tck --> |
|
62 |
<property name="jsr166.tckTestClass" value="JSR166TestCase"/> |
<property name="jsr166.tckTestClass" value="JSR166TestCase"/> |
63 |
|
|
64 |
<!-- Build locations --> |
<!-- Build locations --> |
129 |
<property name="test.src.dir" location="${basedir}/src/test"/> |
<property name="test.src.dir" location="${basedir}/src/test"/> |
130 |
<property name="loops.src.dir" location="${basedir}/src/loops"/> |
<property name="loops.src.dir" location="${basedir}/src/loops"/> |
131 |
<property name="tck.src.dir" location="${test.src.dir}/tck"/> |
<property name="tck.src.dir" location="${test.src.dir}/tck"/> |
132 |
<property name="jtreg.src.dir" location="${test.src.dir}/jtreg"/> |
<property name="jtreg7.src.dir" location="${test.src.dir}/jtreg-jdk7"/> |
133 |
|
<property name="jtreg8.src.dir" location="${test.src.dir}/jtreg"/> |
134 |
|
<property name="jtreg9.src.dir" location="${test.src.dir}/jtreg"/> |
135 |
|
<property name="jtreg.src.dir" location="${jtreg9.src.dir}"/> |
136 |
<property name="lib.dir" location="${basedir}/lib"/> |
<property name="lib.dir" location="${basedir}/lib"/> |
137 |
<property name="dist.dir" location="${basedir}/dist"/> |
<property name="dist.dir" location="${basedir}/dist"/> |
138 |
<property name="topsrc.dir" location="${basedir}/src"/> |
<property name="topsrc.dir" location="${basedir}/src"/> |
166 |
<property name="extra166y.jar" location="${build.extra166y.dir}/extra166y.jar"/> |
<property name="extra166y.jar" location="${build.extra166y.dir}/extra166y.jar"/> |
167 |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
168 |
|
|
169 |
<!-- Canonical location of jdk API docs, to use with javadoc link attribute --> |
<!-- Canonical location of jdk docs root, to use with javadoc -Xdocrootparent flag --> |
170 |
<property name="jdkapi5docs.url" value="http://docs.oracle.com/javase/1.5.0/docs/api/"/> |
<property name="java5.docroot.url" value="http://docs.oracle.com/javase/1.5.0/docs"/> |
171 |
<property name="jdkapi6docs.url" value="http://docs.oracle.com/javase/6/docs/api/"/> |
<property name="java6.docroot.url" value="http://docs.oracle.com/javase/6/docs"/> |
172 |
<property name="jdkapi7docs.url" value="http://docs.oracle.com/javase/7/docs/api/"/> |
<property name="java7.docroot.url" value="http://docs.oracle.com/javase/7/docs"/> |
173 |
|
<property name="java8.docroot.url" value="http://docs.oracle.com/javase/8/docs"/> |
174 |
<property name="jdkapi8docs.url" value="http://download.java.net/jdk8/docs/api/"/> |
<!-- The expected canonical location does not yet exist as of 2014-07 --> |
175 |
<!-- The expected canonical location does not yet exist as of 2014-02 --> |
<!-- <property name="java9.docroot.url" value="http://docs.oracle.com/javase/9/docs"/> --> |
176 |
<!-- <property name="jdkapi8docs.url" value="http://docs.oracle.com/javase/8/docs/api/"/> --> |
<property name="java9.docroot.url" value="http://download.java.net/jdk9/docs"/> |
177 |
|
<!-- Default jdk doc location (latest stable release seems best) --> |
178 |
<property name="jdkapi9docs.url" value="${jdkapi8docs.url}"/> |
<property name="java.docroot.url" value="${java8.docroot.url}"/> |
|
<!-- No published jdk9 docs exist as of 2014-02 --> |
|
|
<!-- <property name="jdkapi9docs.url" value="http://docs.oracle.com/javase/9/docs/api/"/> --> |
|
179 |
|
|
180 |
<!-- Default jdk api doc location (latest stable release seems best) --> |
<!-- Canonical location of jdk API docs, to use with javadoc link attribute --> |
181 |
<property name="jdkapidocs.url" value="${jdkapi7docs.url}"/> |
<property name="java5.api.url" value="${java5.docroot.url}/api/"/> |
182 |
|
<property name="java6.api.url" value="${java6.docroot.url}/api/"/> |
183 |
|
<property name="java7.api.url" value="${java7.docroot.url}/api/"/> |
184 |
|
<property name="java8.api.url" value="${java8.docroot.url}/api/"/> |
185 |
|
<property name="java9.api.url" value="${java9.docroot.url}/api/"/> |
186 |
|
<property name="java.api.url" value="${java.docroot.url}/api/"/> |
187 |
|
|
188 |
<!-- Define the "jtreg" task --> |
<!-- Define the "jtreg" task --> |
189 |
<!-- See the docs in "jtreg -onlineHelp" --> |
<!-- See the docs in "jtreg -onlineHelp" --> |
202 |
<attribute name="compile-target" default="@{target}"/> |
<attribute name="compile-target" default="@{target}"/> |
203 |
<attribute name="workdir"/> |
<attribute name="workdir"/> |
204 |
<attribute name="classes"/> |
<attribute name="classes"/> |
205 |
<attribute name="jvmflags" default=""/> |
<attribute name="jvmflags" default="-ea -esa -Djsr166.testImplementationDetails=true"/> |
206 |
<element name="javac-elements" optional="true"/> |
<element name="javac-elements" optional="true"/> |
207 |
<sequential> |
<sequential> |
208 |
|
|
216 |
source="@{compile-target}" |
source="@{compile-target}" |
217 |
target="@{compile-target}" |
target="@{compile-target}" |
218 |
classpath="${junit.jar}" |
classpath="${junit.jar}" |
|
bootclasspath="@{classes}:${bootclasspath@{compile-target}}" |
|
219 |
includeAntRuntime="false" |
includeAntRuntime="false" |
220 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
221 |
executable="${javac@{compile-target}}" |
executable="${javac@{compile-target}}" |
224 |
<include name="*.java"/> |
<include name="*.java"/> |
225 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
226 |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/> |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/> |
227 |
|
<compilerarg value="-Xbootclasspath/p:@{classes}"/> |
228 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
229 |
<javac-elements/> |
<javac-elements/> |
230 |
|
|
236 |
fork="true"> |
fork="true"> |
237 |
<jvmarg value="-Xbootclasspath/p:@{classes}"/> |
<jvmarg value="-Xbootclasspath/p:@{classes}"/> |
238 |
<jvmarg line="@{jvmflags}"/> |
<jvmarg line="@{jvmflags}"/> |
239 |
|
|
240 |
|
<!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 test-tck --> |
241 |
|
<syspropertyset id="java.util.concurrent.ForkJoinPool-properties"> |
242 |
|
<propertyref prefix="java.util.concurrent.ForkJoinPool"/> |
243 |
|
</syspropertyset> |
244 |
|
|
245 |
<sysproperty key="jsr166.profileTests" value="${jsr166.profileTests}"/> |
<sysproperty key="jsr166.profileTests" value="${jsr166.profileTests}"/> |
246 |
<sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/> |
<sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/> |
247 |
<sysproperty key="jsr166.runsPerTest" value="${jsr166.runsPerTest}"/> |
<sysproperty key="jsr166.runsPerTest" value="${jsr166.runsPerTest}"/> |
254 |
</sequential> |
</sequential> |
255 |
</macrodef> |
</macrodef> |
256 |
|
|
257 |
|
<!-- Define jtreg test sets for different jdk versions --> |
258 |
|
<fileset dir="${jtreg9.src.dir}"> |
259 |
|
<patternset id="jdk9.jtreg.tests"> |
260 |
|
<include name="**/*.java"/> |
261 |
|
</patternset> |
262 |
|
</fileset> |
263 |
|
|
264 |
|
<fileset dir="${jtreg8.src.dir}"> |
265 |
|
<patternset id="jdk8.jtreg.tests"> |
266 |
|
<include name="**/*.java"/> |
267 |
|
<exclude name="**/SpliteratorCharacteristics.java"/> |
268 |
|
<!-- https://bugs.openjdk.java.net/browse/JDK-6842353 --> |
269 |
|
<exclude name="**/GCDuringIteration.java"/> |
270 |
|
</patternset> |
271 |
|
</fileset> |
272 |
|
|
273 |
|
<fileset dir="${jtreg7.src.dir}"> |
274 |
|
<patternset id="jdk7.jtreg.tests"> |
275 |
|
<include name="**/*.java"/> |
276 |
|
</patternset> |
277 |
|
</fileset> |
278 |
|
|
279 |
<macrodef name="run-jtreg-tests"> |
<macrodef name="run-jtreg-tests"> |
280 |
<attribute name="jtreg.src.dir" default="${jtreg.src.dir}"/> |
<!-- ant -Djtreg9.src.dir=src/test/jtreg/util/concurrent/CompletableFuture test-jtreg --> |
281 |
<attribute name="source" default="7"/> |
<attribute name="source" default="7"/> |
282 |
<attribute name="target"/> |
<attribute name="target"/> |
283 |
<attribute name="workdir"/> |
<attribute name="workdir"/> |
288 |
<delete dir="@{workdir}/JTreport" quiet="true"/> |
<delete dir="@{workdir}/JTreport" quiet="true"/> |
289 |
<mkdir dir="@{workdir}/JTwork/scratch"/> |
<mkdir dir="@{workdir}/JTwork/scratch"/> |
290 |
<mkdir dir="@{workdir}/JTreport"/> |
<mkdir dir="@{workdir}/JTreport"/> |
291 |
<jtreg dir="@{jtreg.src.dir}" |
<jtreg dir="${jtreg@{target}.src.dir}" |
292 |
jdk="${jdk@{target}.home}" |
jdk="${jdk@{target}.home}" |
293 |
workDir="@{workdir}/JTwork" |
workDir="@{workdir}/JTwork" |
294 |
reportDir="@{workdir}/JTreport"> |
reportDir="@{workdir}/JTreport"> |
295 |
|
<patternset refid="jdk@{target}.jtreg.tests"/> |
296 |
<arg value="-Xbootclasspath/p:@{classes}"/> |
<arg value="-Xbootclasspath/p:@{classes}"/> |
297 |
<arg value="-agentvm"/> |
<arg value="-agentvm"/> |
298 |
<arg value="-v:nopass,fail"/> |
<arg value="-v:nopass,fail"/> |
343 |
<compilerarg value="-Xprefer:source"/> |
<compilerarg value="-Xprefer:source"/> |
344 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
345 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
346 |
|
<compilerarg value="-Werror"/> |
347 |
<compilerarg value="-Xdoclint:all/protected"/> |
<compilerarg value="-Xdoclint:all/protected"/> |
348 |
<compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/> |
<compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/> |
349 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
373 |
|
|
374 |
<javadoc destdir="${docs.dir}" |
<javadoc destdir="${docs.dir}" |
375 |
packagenames="none" |
packagenames="none" |
376 |
link="${jdkapi9docs.url}" |
link="${java9.api.url}" |
377 |
overview="${src.dir}/intro.html" |
overview="${src.dir}/intro.html" |
378 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
379 |
sourcepath="${src.dir}:${jdk9src.dir}" |
sourcepath="${src.dir}:${jdk9src.dir}" |
382 |
<fileset dir="${src.dir}" defaultexcludes="yes"> |
<fileset dir="${src.dir}" defaultexcludes="yes"> |
383 |
<include name="**/*.java"/> |
<include name="**/*.java"/> |
384 |
</fileset> |
</fileset> |
385 |
|
<arg line="-Xdocrootparent ${java9.docroot.url}"/> |
386 |
<arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/> |
<arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/> |
387 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
388 |
<arg value="-tag"/> |
<arg value="-tag"/> |
447 |
<mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/> |
<mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/> |
448 |
</target> |
</target> |
449 |
|
|
450 |
|
<target name="tck" depends="test-tck" description="alias for test-tck"/> |
451 |
<target name="test-tck" |
<target name="test-tck" |
452 |
depends="jar" |
depends="jar" |
453 |
description="Runs tck tests for main directly"> |
description="Runs tck tests for main directly"> |
458 |
classes="${product.jar}"/> |
classes="${product.jar}"/> |
459 |
</target> |
</target> |
460 |
|
|
461 |
|
<target name="test-tck-parallelism-1" |
462 |
|
description="Runs test-tck with given common pool parallelism"> |
463 |
|
<antcall target="test-tck"> |
464 |
|
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/> |
465 |
|
</antcall> |
466 |
|
</target> |
467 |
|
|
468 |
|
<target name="test-tck-parallelism-0" |
469 |
|
description="Runs test-tck with given common pool parallelism"> |
470 |
|
<antcall target="test-tck"> |
471 |
|
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/> |
472 |
|
</antcall> |
473 |
|
</target> |
474 |
|
|
475 |
|
<target name="jtreg" depends="test-jtreg" description="alias for test-jtreg"/> |
476 |
<target name="test-jtreg" |
<target name="test-jtreg" |
477 |
depends="jar" |
depends="jar" |
478 |
description="Runs jtreg tests for main using the jtreg ant task"> |
description="Runs jtreg tests for main using the jtreg ant task"> |
483 |
</target> |
</target> |
484 |
|
|
485 |
<target name="test" |
<target name="test" |
486 |
depends="test-tck, test-jtreg" |
depends="test-tck, test-tck-parallelism-1, test-jtreg" |
487 |
description="Runs tck and jtreg tests for main"> |
description="Runs tck and jtreg tests for main"> |
488 |
</target> |
</target> |
489 |
|
|
490 |
|
<target name="jtreg8" description="Runs jtreg tests with jdk8"> |
491 |
|
|
492 |
|
<antcall target="jtreg"> |
493 |
|
<param name="build.main.java.version" value="8"/> |
494 |
|
<param name="build.main.javac" value="${javac8}"/> |
495 |
|
</antcall> |
496 |
|
|
497 |
|
</target> |
498 |
|
|
499 |
<target name="test89" |
<target name="test89" |
500 |
description="Runs tck and jtreg tests for main for multiple java versions"> |
description="Runs tck and jtreg tests for main for multiple java versions"> |
501 |
|
|
562 |
</target> |
</target> |
563 |
|
|
564 |
|
|
565 |
|
<target name="compile-test-loops" depends="jar" |
566 |
|
description="compile all the perf tests in src/test/loops"> |
567 |
|
|
568 |
|
<mkdir dir="${build.dir}/test/loops"/> |
569 |
|
|
570 |
|
<javac srcdir="${basedir}/src/test/loops" |
571 |
|
destdir="${build.dir}/test/loops" |
572 |
|
debug="${build.debug}" |
573 |
|
debuglevel="${build.debuglevel}" |
574 |
|
deprecation="${build.deprecation}" |
575 |
|
includeAntRuntime="false" |
576 |
|
includeJavaRuntime="false" |
577 |
|
executable="${javac9}" |
578 |
|
fork="true"> |
579 |
|
|
580 |
|
<include name="*.java"/> |
581 |
|
<compilerarg value="-XDignore.symbol.file=true"/> |
582 |
|
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/> |
583 |
|
<compilerarg value="-Xbootclasspath/p:${product.jar}"/> |
584 |
|
<compilerarg line="${build.args}"/> |
585 |
|
|
586 |
|
</javac> |
587 |
|
|
588 |
|
</target> |
589 |
|
|
590 |
|
|
591 |
<!-- jsr166 4jdk7 --> |
<!-- jsr166 4jdk7 --> |
592 |
|
|
593 |
<target name="4jdk7compile" |
<target name="4jdk7compile" |
613 |
<compilerarg value="-Xprefer:source"/> |
<compilerarg value="-Xprefer:source"/> |
614 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
615 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
616 |
|
<compilerarg value="-Werror"/> |
617 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
618 |
|
|
619 |
</javac> |
</javac> |
718 |
<run-jtreg-tests |
<run-jtreg-tests |
719 |
target="7" |
target="7" |
720 |
workdir="${build.4jdk7.dir}" |
workdir="${build.4jdk7.dir}" |
721 |
classes="${4jdk7product.jar}" |
classes="${4jdk7product.jar}"/> |
|
jtregflags="-exclude:${jtreg.src.dir}/jdk8tests"/> |
|
722 |
</target> |
</target> |
723 |
|
|
724 |
|
|
736 |
|
|
737 |
<javadoc destdir="${4jdk7docs.dir}" |
<javadoc destdir="${4jdk7docs.dir}" |
738 |
packagenames="none" |
packagenames="none" |
739 |
link="${jdkapi7docs.url}" |
link="${java7.api.url}" |
740 |
overview="${4jdk7src.dir}/intro.html" |
overview="${4jdk7src.dir}/intro.html" |
741 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
742 |
sourcepath="${4jdk7src.dir}:${jdk7src.dir}" |
sourcepath="${4jdk7src.dir}:${jdk7src.dir}" |
745 |
<fileset dir="${4jdk7src.dir}" defaultexcludes="yes"> |
<fileset dir="${4jdk7src.dir}" defaultexcludes="yes"> |
746 |
<include name="**/*.java"/> |
<include name="**/*.java"/> |
747 |
</fileset> |
</fileset> |
748 |
|
<arg line="-Xdocrootparent ${java7.docroot.url}"/> |
749 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
750 |
</javadoc> |
</javadoc> |
751 |
</target> |
</target> |
800 |
<include name="jsr166x/**/*.java"/> |
<include name="jsr166x/**/*.java"/> |
801 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
802 |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes"/> |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes"/> |
803 |
|
<compilerarg value="-Werror"/> |
804 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
805 |
|
|
806 |
</javac> |
</javac> |
826 |
|
|
827 |
<javadoc destdir="${jsr166xdocs.dir}" |
<javadoc destdir="${jsr166xdocs.dir}" |
828 |
packagenames="jsr166x.*" |
packagenames="jsr166x.*" |
829 |
link="${jdkapidocs.url}" |
link="${java.api.url}" |
830 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
831 |
sourcepath="${topsrc.dir}:${jdk6src.dir}" |
sourcepath="${topsrc.dir}:${jdk6src.dir}" |
832 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
833 |
source="5" |
source="5" |
834 |
executable="${javadoc7}"> |
executable="${javadoc7}"> |
835 |
|
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
836 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
837 |
|
|
838 |
</javadoc> |
</javadoc> |
887 |
<include name="jsr166y/**/*.java"/> |
<include name="jsr166y/**/*.java"/> |
888 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
889 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
890 |
|
<compilerarg value="-Werror"/> |
891 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
892 |
|
|
893 |
</javac> |
</javac> |
913 |
|
|
914 |
<javadoc destdir="${jsr166ydocs.dir}" |
<javadoc destdir="${jsr166ydocs.dir}" |
915 |
packagenames="jsr166y.*" |
packagenames="jsr166y.*" |
916 |
link="${jdkapidocs.url}" |
link="${java.api.url}" |
917 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
918 |
sourcepath="${topsrc.dir}:${jdk6src.dir}" |
sourcepath="${topsrc.dir}:${jdk6src.dir}" |
919 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
920 |
source="6" |
source="6" |
921 |
executable="${javadoc7}"> |
executable="${javadoc7}"> |
922 |
|
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
923 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
924 |
|
|
925 |
</javadoc> |
</javadoc> |
975 |
<include name="extra166y/**/*.java"/> |
<include name="extra166y/**/*.java"/> |
976 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
977 |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/> |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/> |
978 |
|
<compilerarg value="-Werror"/> |
979 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
980 |
|
|
981 |
</javac> |
</javac> |
1001 |
|
|
1002 |
<javadoc destdir="${extra166ydocs.dir}" |
<javadoc destdir="${extra166ydocs.dir}" |
1003 |
packagenames="extra166y.*" |
packagenames="extra166y.*" |
1004 |
link="${jdkapidocs.url}" |
link="${java.api.url}" |
1005 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
1006 |
sourcepath="${topsrc.dir}:${jdk6src.dir}" |
sourcepath="${topsrc.dir}:${jdk6src.dir}" |
1007 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
1008 |
source="6" |
source="6" |
1009 |
executable="${javadoc7}"> |
executable="${javadoc7}"> |
1010 |
|
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
1011 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
1012 |
|
|
1013 |
</javadoc> |
</javadoc> |
1063 |
<include name="jsr166e/**/*.java"/> |
<include name="jsr166e/**/*.java"/> |
1064 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
1065 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
1066 |
|
<compilerarg value="-Werror"/> |
1067 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
1068 |
|
|
1069 |
</javac> |
</javac> |
1090 |
<include name="jsr166e/**/*.java"/> |
<include name="jsr166e/**/*.java"/> |
1091 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
1092 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
1093 |
|
<compilerarg value="-Werror"/> |
1094 |
<compilerarg value="-Xdoclint:all/protected"/> |
<compilerarg value="-Xdoclint:all/protected"/> |
1095 |
|
|
1096 |
</javac> |
</javac> |
1116 |
|
|
1117 |
<javadoc destdir="${jsr166edocs.dir}" |
<javadoc destdir="${jsr166edocs.dir}" |
1118 |
packagenames="jsr166e.*" |
packagenames="jsr166e.*" |
1119 |
link="${jdkapidocs.url}" |
link="${java.api.url}" |
1120 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
1121 |
sourcepath="${topsrc.dir}:${jdk6src.dir}" |
sourcepath="${topsrc.dir}:${jdk6src.dir}" |
1122 |
source="${build.jsr166e.java.version}" |
source="${build.jsr166e.java.version}" |
1123 |
executable="${javadoc7}"> |
executable="${javadoc7}"> |
1124 |
|
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
1125 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
1126 |
|
|
1127 |
</javadoc> |
</javadoc> |
1194 |
|
|
1195 |
<target name="lint"> |
<target name="lint"> |
1196 |
<antcall target="dists"> |
<antcall target="dists"> |
1197 |
|
<param name="build.javadoc.access" value="public"/> |
1198 |
|
</antcall> |
1199 |
|
</target> |
1200 |
|
|
1201 |
|
<!-- Generates all doclint warnings, even for private methods (rarely useful) --> |
1202 |
|
<target name="lint-private"> |
1203 |
|
<antcall target="dist"> |
1204 |
<param name="build.javadoc.access" value="private"/> |
<param name="build.javadoc.access" value="private"/> |
1205 |
</antcall> |
</antcall> |
1206 |
</target> |
</target> |