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}"/> |
422 |
<mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/> |
<mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/> |
423 |
</target> |
</target> |
424 |
|
|
425 |
|
<target name="tck" depends="test-tck" description="alias for test-tck"/> |
426 |
<target name="test-tck" |
<target name="test-tck" |
427 |
depends="jar" |
depends="jar" |
428 |
description="Runs tck tests for main directly"> |
description="Runs tck tests for main directly"> |
433 |
classes="${product.jar}"/> |
classes="${product.jar}"/> |
434 |
</target> |
</target> |
435 |
|
|
436 |
|
<target name="test-tck-parallelism-1" |
437 |
|
description="Runs test-tck with given common pool parallelism"> |
438 |
|
<antcall target="test-tck"> |
439 |
|
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/> |
440 |
|
</antcall> |
441 |
|
</target> |
442 |
|
|
443 |
|
<target name="test-tck-parallelism-0" |
444 |
|
description="Runs test-tck with given common pool parallelism"> |
445 |
|
<antcall target="test-tck"> |
446 |
|
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/> |
447 |
|
</antcall> |
448 |
|
</target> |
449 |
|
|
450 |
|
<target name="jtreg" depends="test-jtreg" description="alias for test-jtreg"/> |
451 |
<target name="test-jtreg" |
<target name="test-jtreg" |
452 |
depends="jar" |
depends="jar" |
453 |
description="Runs jtreg tests for main using the jtreg ant task"> |
description="Runs jtreg tests for main using the jtreg ant task"> |
458 |
</target> |
</target> |
459 |
|
|
460 |
<target name="test" |
<target name="test" |
461 |
depends="test-tck, test-jtreg" |
depends="test-tck, test-tck-parallelism-1, test-jtreg" |
462 |
description="Runs tck and jtreg tests for main"> |
description="Runs tck and jtreg tests for main"> |
463 |
</target> |
</target> |
464 |
|
|
1129 |
|
|
1130 |
<target name="lint"> |
<target name="lint"> |
1131 |
<antcall target="dists"> |
<antcall target="dists"> |
1132 |
|
<param name="build.javadoc.access" value="public"/> |
1133 |
|
</antcall> |
1134 |
|
</target> |
1135 |
|
|
1136 |
|
<!-- Generates all doclint warnings, even for private methods (rarely useful) --> |
1137 |
|
<target name="lint-private"> |
1138 |
|
<antcall target="dist"> |
1139 |
<param name="build.javadoc.access" value="private"/> |
<param name="build.javadoc.access" value="private"/> |
1140 |
</antcall> |
</antcall> |
1141 |
</target> |
</target> |