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 |
|
|
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 |
Profiling a tck test class: |
To profile a single tck test class: |
55 |
ant -Djsr166.profileTests=true -Djsr166.profileThreshold=100 -Djsr166.tckTestClass=CompletableFutureTest test-tck |
ant -Djsr166.profileTests=true -Djsr166.profileThreshold=100 -Djsr166.tckTestClass=CompletableFutureTest test-tck |
56 |
Stress test a tck test class: |
To stress test a single tck test class: |
57 |
ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 test-tck |
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"/> |
|
<!-- Stress test 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 --> |
213 |
source="@{compile-target}" |
source="@{compile-target}" |
214 |
target="@{compile-target}" |
target="@{compile-target}" |
215 |
classpath="${junit.jar}" |
classpath="${junit.jar}" |
|
bootclasspath="@{classes}:${bootclasspath@{compile-target}}" |
|
216 |
includeAntRuntime="false" |
includeAntRuntime="false" |
217 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
218 |
executable="${javac@{compile-target}}" |
executable="${javac@{compile-target}}" |
221 |
<include name="*.java"/> |
<include name="*.java"/> |
222 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
223 |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/> |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/> |
224 |
|
<compilerarg value="-Xbootclasspath/p:@{classes}"/> |
225 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
226 |
<javac-elements/> |
<javac-elements/> |
227 |
|
|
233 |
fork="true"> |
fork="true"> |
234 |
<jvmarg value="-Xbootclasspath/p:@{classes}"/> |
<jvmarg value="-Xbootclasspath/p:@{classes}"/> |
235 |
<jvmarg line="@{jvmflags}"/> |
<jvmarg line="@{jvmflags}"/> |
236 |
|
|
237 |
|
<!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 test-tck --> |
238 |
|
<syspropertyset id="java.util.concurrent.ForkJoinPool-properties"> |
239 |
|
<propertyref prefix="java.util.concurrent.ForkJoinPool"/> |
240 |
|
</syspropertyset> |
241 |
|
|
242 |
<sysproperty key="jsr166.profileTests" value="${jsr166.profileTests}"/> |
<sysproperty key="jsr166.profileTests" value="${jsr166.profileTests}"/> |
243 |
<sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/> |
<sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/> |
244 |
<sysproperty key="jsr166.runsPerTest" value="${jsr166.runsPerTest}"/> |
<sysproperty key="jsr166.runsPerTest" value="${jsr166.runsPerTest}"/> |
251 |
</sequential> |
</sequential> |
252 |
</macrodef> |
</macrodef> |
253 |
|
|
254 |
|
<!-- Define jtreg test sets for different jdk versions --> |
255 |
|
<fileset dir="${jtreg.src.dir}"> |
256 |
|
<patternset id="jdk9.jtreg.tests"> |
257 |
|
<include name="**/*.java"/> |
258 |
|
</patternset> |
259 |
|
</fileset> |
260 |
|
|
261 |
|
<fileset dir="${jtreg.src.dir}"> |
262 |
|
<patternset id="jdk8.jtreg.tests"> |
263 |
|
<include name="**/*.java"/> |
264 |
|
<exclude name="util/Spliterator/SpliteratorCharacteristics.java"/> |
265 |
|
</patternset> |
266 |
|
</fileset> |
267 |
|
|
268 |
|
<fileset dir="${jtreg.src.dir}"> |
269 |
|
<patternset id="jdk7.jtreg.tests"> |
270 |
|
<include name="**/*.java"/> |
271 |
|
<exclude name="util/Collection/CollectionDefaults.java"/> |
272 |
|
<exclude name="util/List/ListDefaults.java"/> |
273 |
|
<exclude name="util/Spliterator/**/*.java"/> |
274 |
|
<exclude name="util/concurrent/CompletableFuture/**/*.java"/> |
275 |
|
<exclude name="util/concurrent/forkjoin/SubmissionTest.java"/> |
276 |
|
<exclude name="util/concurrent/locks/StampedLock/**/*.java"/> |
277 |
|
</patternset> |
278 |
|
</fileset> |
279 |
|
|
280 |
<macrodef name="run-jtreg-tests"> |
<macrodef name="run-jtreg-tests"> |
281 |
<!-- ant -Djtreg.src.dir=src/test/jtreg/util/concurrent/CompletableFuture test-jtreg --> |
<!-- ant -Djtreg.src.dir=src/test/jtreg/util/concurrent/CompletableFuture test-jtreg --> |
282 |
<attribute name="jtreg.src.dir" default="${jtreg.src.dir}"/> |
<attribute name="jtreg.src.dir" default="${jtreg.src.dir}"/> |
294 |
jdk="${jdk@{target}.home}" |
jdk="${jdk@{target}.home}" |
295 |
workDir="@{workdir}/JTwork" |
workDir="@{workdir}/JTwork" |
296 |
reportDir="@{workdir}/JTreport"> |
reportDir="@{workdir}/JTreport"> |
297 |
|
<patternset refid="jdk@{target}.jtreg.tests"/> |
298 |
<arg value="-Xbootclasspath/p:@{classes}"/> |
<arg value="-Xbootclasspath/p:@{classes}"/> |
299 |
<arg value="-agentvm"/> |
<arg value="-agentvm"/> |
300 |
<arg value="-v:nopass,fail"/> |
<arg value="-v:nopass,fail"/> |
345 |
<compilerarg value="-Xprefer:source"/> |
<compilerarg value="-Xprefer:source"/> |
346 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
347 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
348 |
|
<compilerarg value="-Werror"/> |
349 |
<compilerarg value="-Xdoclint:all/protected"/> |
<compilerarg value="-Xdoclint:all/protected"/> |
350 |
<compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/> |
<compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/> |
351 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
449 |
<mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/> |
<mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/> |
450 |
</target> |
</target> |
451 |
|
|
452 |
|
<target name="tck" depends="test-tck" description="alias for test-tck"/> |
453 |
<target name="test-tck" |
<target name="test-tck" |
454 |
depends="jar" |
depends="jar" |
455 |
description="Runs tck tests for main directly"> |
description="Runs tck tests for main directly"> |
460 |
classes="${product.jar}"/> |
classes="${product.jar}"/> |
461 |
</target> |
</target> |
462 |
|
|
463 |
|
<target name="test-tck-parallelism-1" |
464 |
|
description="Runs test-tck with given common pool parallelism"> |
465 |
|
<antcall target="test-tck"> |
466 |
|
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/> |
467 |
|
</antcall> |
468 |
|
</target> |
469 |
|
|
470 |
|
<target name="test-tck-parallelism-0" |
471 |
|
description="Runs test-tck with given common pool parallelism"> |
472 |
|
<antcall target="test-tck"> |
473 |
|
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/> |
474 |
|
</antcall> |
475 |
|
</target> |
476 |
|
|
477 |
|
<target name="jtreg" depends="test-jtreg" description="alias for test-jtreg"/> |
478 |
<target name="test-jtreg" |
<target name="test-jtreg" |
479 |
depends="jar" |
depends="jar" |
480 |
description="Runs jtreg tests for main using the jtreg ant task"> |
description="Runs jtreg tests for main using the jtreg ant task"> |
485 |
</target> |
</target> |
486 |
|
|
487 |
<target name="test" |
<target name="test" |
488 |
depends="test-tck, test-jtreg" |
depends="test-tck, test-tck-parallelism-1, test-jtreg" |
489 |
description="Runs tck and jtreg tests for main"> |
description="Runs tck and jtreg tests for main"> |
490 |
</target> |
</target> |
491 |
|
|
496 |
<antcall target="test"> |
<antcall target="test"> |
497 |
<param name="build.main.java.version" value="8"/> |
<param name="build.main.java.version" value="8"/> |
498 |
<param name="build.main.javac" value="${javac8}"/> |
<param name="build.main.javac" value="${javac8}"/> |
499 |
|
<param name="jtreg.exclude.file" value="${jtreg.src.dir}/jdk9tests"/> |
500 |
</antcall> |
</antcall> |
501 |
|
|
502 |
<antcall target="clean"/> |
<antcall target="clean"/> |
556 |
</target> |
</target> |
557 |
|
|
558 |
|
|
559 |
|
<target name="compile-test-loops" depends="jar" |
560 |
|
description="compile all the perf tests in src/test/loops"> |
561 |
|
|
562 |
|
<mkdir dir="${build.dir}/test/loops"/> |
563 |
|
|
564 |
|
<javac srcdir="${basedir}/src/test/loops" |
565 |
|
destdir="${build.dir}/test/loops" |
566 |
|
debug="${build.debug}" |
567 |
|
debuglevel="${build.debuglevel}" |
568 |
|
deprecation="${build.deprecation}" |
569 |
|
includeAntRuntime="false" |
570 |
|
includeJavaRuntime="false" |
571 |
|
executable="${javac9}" |
572 |
|
fork="true"> |
573 |
|
|
574 |
|
<include name="*.java"/> |
575 |
|
<compilerarg value="-XDignore.symbol.file=true"/> |
576 |
|
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/> |
577 |
|
<compilerarg value="-Xbootclasspath/p:${product.jar}"/> |
578 |
|
<compilerarg line="${build.args}"/> |
579 |
|
|
580 |
|
</javac> |
581 |
|
|
582 |
|
</target> |
583 |
|
|
584 |
|
|
585 |
<!-- jsr166 4jdk7 --> |
<!-- jsr166 4jdk7 --> |
586 |
|
|
587 |
<target name="4jdk7compile" |
<target name="4jdk7compile" |
607 |
<compilerarg value="-Xprefer:source"/> |
<compilerarg value="-Xprefer:source"/> |
608 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
609 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
610 |
|
<compilerarg value="-Werror"/> |
611 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
612 |
|
|
613 |
</javac> |
</javac> |
712 |
<run-jtreg-tests |
<run-jtreg-tests |
713 |
target="7" |
target="7" |
714 |
workdir="${build.4jdk7.dir}" |
workdir="${build.4jdk7.dir}" |
715 |
classes="${4jdk7product.jar}" |
classes="${4jdk7product.jar}"/> |
|
jtregflags="-exclude:${jtreg.src.dir}/jdk8tests"/> |
|
716 |
</target> |
</target> |
717 |
|
|
718 |
|
|
794 |
<include name="jsr166x/**/*.java"/> |
<include name="jsr166x/**/*.java"/> |
795 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
796 |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes"/> |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes"/> |
797 |
|
<compilerarg value="-Werror"/> |
798 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
799 |
|
|
800 |
</javac> |
</javac> |
881 |
<include name="jsr166y/**/*.java"/> |
<include name="jsr166y/**/*.java"/> |
882 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
883 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
884 |
|
<compilerarg value="-Werror"/> |
885 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
886 |
|
|
887 |
</javac> |
</javac> |
969 |
<include name="extra166y/**/*.java"/> |
<include name="extra166y/**/*.java"/> |
970 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
971 |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/> |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/> |
972 |
|
<compilerarg value="-Werror"/> |
973 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
974 |
|
|
975 |
</javac> |
</javac> |
1057 |
<include name="jsr166e/**/*.java"/> |
<include name="jsr166e/**/*.java"/> |
1058 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
1059 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
1060 |
|
<compilerarg value="-Werror"/> |
1061 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
1062 |
|
|
1063 |
</javac> |
</javac> |
1084 |
<include name="jsr166e/**/*.java"/> |
<include name="jsr166e/**/*.java"/> |
1085 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
1086 |
<compilerarg value="-Xlint:all"/> |
<compilerarg value="-Xlint:all"/> |
1087 |
|
<compilerarg value="-Werror"/> |
1088 |
<compilerarg value="-Xdoclint:all/protected"/> |
<compilerarg value="-Xdoclint:all/protected"/> |
1089 |
|
|
1090 |
</javac> |
</javac> |
1188 |
|
|
1189 |
<target name="lint"> |
<target name="lint"> |
1190 |
<antcall target="dists"> |
<antcall target="dists"> |
1191 |
|
<param name="build.javadoc.access" value="public"/> |
1192 |
|
</antcall> |
1193 |
|
</target> |
1194 |
|
|
1195 |
|
<!-- Generates all doclint warnings, even for private methods (rarely useful) --> |
1196 |
|
<target name="lint-private"> |
1197 |
|
<antcall target="dist"> |
1198 |
<param name="build.javadoc.access" value="private"/> |
<param name="build.javadoc.access" value="private"/> |
1199 |
</antcall> |
</antcall> |
1200 |
</target> |
</target> |