57 |
<property name="build.deprecation" value="false"/> |
<property name="build.deprecation" value="false"/> |
58 |
<property name="build.javadoc.access" value="protected"/> |
<property name="build.javadoc.access" value="protected"/> |
59 |
|
|
|
<!-- Tck options; see JSR166TestCase.java |
|
|
To profile a single tck test class: |
|
|
ant -Djsr166.profileTests=true -Djsr166.profileThreshold=10 -Djsr166.tckTestClass=CompletableFutureTest tck |
|
|
To stress test a single tck test class: |
|
|
ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 tck |
|
|
--> |
|
|
<property name="jsr166.profileTests" value="false"/> |
|
|
<property name="jsr166.profileThreshold" value="100"/> |
|
|
<property name="jsr166.runsPerTest" value="1"/> |
|
|
<property name="jsr166.tckTestClass" value="JSR166TestCase"/> |
|
|
|
|
60 |
<!-- Build locations --> |
<!-- Build locations --> |
61 |
<property name="build.dir" location="build"/> |
<property name="build.dir" location="build"/> |
62 |
<property name="build.classes.dir" location="${build.dir}/classes"/> |
<property name="build.classes.dir" location="${build.dir}/classes"/> |
175 |
<property name="java6.docroot.url" value="http://docs.oracle.com/javase/6/docs"/> |
<property name="java6.docroot.url" value="http://docs.oracle.com/javase/6/docs"/> |
176 |
<property name="java7.docroot.url" value="http://docs.oracle.com/javase/7/docs"/> |
<property name="java7.docroot.url" value="http://docs.oracle.com/javase/7/docs"/> |
177 |
<property name="java8.docroot.url" value="http://docs.oracle.com/javase/8/docs"/> |
<property name="java8.docroot.url" value="http://docs.oracle.com/javase/8/docs"/> |
178 |
<!-- The expected canonical location does not yet exist as of 2014-07 --> |
<!-- The expected canonical location does not yet exist as of 2015-11 --> |
179 |
<!-- <property name="java9.docroot.url" value="http://docs.oracle.com/javase/9/docs"/> --> |
<!-- <property name="java9.docroot.url" value="http://docs.oracle.com/javase/9/docs"/> --> |
180 |
<property name="java9.docroot.url" value="http://download.java.net/jdk9/docs"/> |
<property name="java9.docroot.url" value="http://download.java.net/jdk9/docs"/> |
181 |
<!-- Default jdk doc location (latest stable release seems best) --> |
<!-- Default jdk doc location (latest stable release seems best) --> |
194 |
<taskdef name="jtreg" classname="com.sun.javatest.regtest.Main$$Ant" |
<taskdef name="jtreg" classname="com.sun.javatest.regtest.Main$$Ant" |
195 |
classpath="${lib.dir}/jtreg.jar" /> |
classpath="${lib.dir}/jtreg.jar" /> |
196 |
|
|
197 |
<!-- Test classpath --> |
<!-- Tck options; see JSR166TestCase.java |
198 |
<path id="test.classpath"> |
To profile a single tck test class: |
199 |
<pathelement location="${build.testcases.dir}"/> |
ant -Djsr166.profileTests=true -Djsr166.profileThreshold=10 -Djsr166.tckTestClass=CompletableFutureTest tck |
200 |
<pathelement location="${junit.jar}"/> |
To stress test a single tck test class: |
201 |
</path> |
ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 tck |
202 |
|
To stress test a single tck test method: |
203 |
|
ant -Djsr166.tckTestClass=RecursiveTaskTest -Djsr166.runsPerTest=1000 -Djsr166.methodFilter=testAbnormalInvokeAll3 tck |
204 |
|
--> |
205 |
|
<property name="jsr166.tckTestClass" value="JSR166TestCase"/> |
206 |
<macrodef name="run-tck-tests"> |
<macrodef name="run-tck-tests"> |
207 |
<attribute name="tck.src.dir" default="${tck.src.dir}"/> |
<attribute name="tck.src.dir" default="${tck.src.dir}"/> |
208 |
<attribute name="target"/> |
<attribute name="target"/> |
236 |
|
|
237 |
<include name="*.java"/> |
<include name="*.java"/> |
238 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
239 |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/> |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation,-try"/> |
240 |
<compilerarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
<compilerarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
241 |
<compilerarg value="-Xoverride:${build.classes.dir}" if:set="modules"/> |
<compilerarg value="-Xoverride:${build.classes.dir}" if:set="modules"/> |
242 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
253 |
<jvmarg line="@{jvmflags}"/> |
<jvmarg line="@{jvmflags}"/> |
254 |
|
|
255 |
<!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck --> |
<!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck --> |
256 |
<syspropertyset id="java.util.concurrent.ForkJoinPool-properties"> |
<syspropertyset id="system-properties-used-by-tck"> |
257 |
<propertyref prefix="java.util.concurrent.ForkJoinPool"/> |
<propertyref prefix="java.util.concurrent.ForkJoinPool"/> |
258 |
|
<propertyref prefix="jsr166."/> |
259 |
</syspropertyset> |
</syspropertyset> |
260 |
|
|
|
<sysproperty key="jsr166.profileTests" value="${jsr166.profileTests}"/> |
|
|
<sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/> |
|
|
<sysproperty key="jsr166.runsPerTest" value="${jsr166.runsPerTest}"/> |
|
261 |
<classpath> |
<classpath> |
262 |
<pathelement location="${junit.jar}"/> |
<pathelement location="${junit.jar}"/> |
263 |
<pathelement location="@{workdir}/tck-classes"/> |
<pathelement location="@{workdir}/tck-classes"/> |
299 |
|
|
300 |
<sequential> |
<sequential> |
301 |
|
|
302 |
|
<!-- ant -Djtreg.verbose=time,fail,error jtreg --> |
303 |
|
<property name="jtreg.verbose" value="nopass,fail,error"/> |
304 |
|
|
305 |
<local name="modules"/> |
<local name="modules"/> |
306 |
<condition property="modules"> |
<condition property="modules"> |
307 |
<available file="${jdk@{target}.home}/jmods" type="dir"/> |
<available file="${jdk@{target}.home}/jmods" type="dir"/> |
310 |
<delete dir="@{workdir}/JTwork" quiet="true"/> |
<delete dir="@{workdir}/JTwork" quiet="true"/> |
311 |
<delete dir="@{workdir}/JTreport" quiet="true"/> |
<delete dir="@{workdir}/JTreport" quiet="true"/> |
312 |
<mkdir dir="@{workdir}/JTwork/scratch"/> |
<mkdir dir="@{workdir}/JTwork/scratch"/> |
313 |
<mkdir dir="@{workdir}/JTreport"/> |
<!-- workaround for https://bugs.openjdk.java.net/browse/CODETOOLS-7901571 --> |
314 |
|
<mkdir dir="@{workdir}/JTreport/html"/> |
315 |
|
<mkdir dir="@{workdir}/JTreport/text"/> |
316 |
<jtreg dir="${jtreg@{target}.src.dir}" |
<jtreg dir="${jtreg@{target}.src.dir}" |
317 |
jdk="${jdk@{target}.home}" |
jdk="${jdk@{target}.home}" |
318 |
workDir="@{workdir}/JTwork" |
workDir="@{workdir}/JTwork" |
321 |
<arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
<arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
322 |
<arg value="-Xoverride:${build.classes.dir}" if:set="modules"/> |
<arg value="-Xoverride:${build.classes.dir}" if:set="modules"/> |
323 |
<arg value="-agentvm"/> |
<arg value="-agentvm"/> |
324 |
<arg value="-v:nopass,fail"/> |
<arg value="-verbose:${jtreg.verbose}"/> |
325 |
<arg value="-vmoptions:-esa -ea"/> |
<arg value="-vmoptions:-esa -ea"/> |
326 |
<arg value="-automatic"/> |
<arg value="-automatic"/> |
327 |
<arg value="-k:!ignore"/> |
<arg value="-k:!ignore"/> |
598 |
debuglevel="${build.debuglevel}" |
debuglevel="${build.debuglevel}" |
599 |
deprecation="${build.deprecation}" |
deprecation="${build.deprecation}" |
600 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
601 |
|
target="${build.sourcelevel}" |
602 |
fork="true"> |
fork="true"> |
603 |
|
|
604 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
654 |
debuglevel="${build.debuglevel}" |
debuglevel="${build.debuglevel}" |
655 |
deprecation="${build.deprecation}" |
deprecation="${build.deprecation}" |
656 |
source="6" |
source="6" |
657 |
|
target="6" |
658 |
classpath="" |
classpath="" |
659 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
660 |
includeAntRuntime="false" |
includeAntRuntime="false" |
684 |
debuglevel="${build.debuglevel}" |
debuglevel="${build.debuglevel}" |
685 |
deprecation="${build.deprecation}" |
deprecation="${build.deprecation}" |
686 |
source="6" |
source="6" |
687 |
|
target="6" |
688 |
classpath="" |
classpath="" |
689 |
bootclasspath="${bootclasspath7}" |
bootclasspath="${bootclasspath6}" |
690 |
includeAntRuntime="false" |
includeAntRuntime="false" |
691 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
692 |
executable="${javac8}" |
executable="${javac8}" |
852 |
classpath="" |
classpath="" |
853 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
854 |
source="5" |
source="5" |
855 |
|
target="5" |
856 |
includeAntRuntime="false" |
includeAntRuntime="false" |
857 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
858 |
executable="${javac7}" |
executable="${javac7}" |
942 |
debuglevel="${build.debuglevel}" |
debuglevel="${build.debuglevel}" |
943 |
deprecation="${build.deprecation}" |
deprecation="${build.deprecation}" |
944 |
source="6" |
source="6" |
945 |
|
target="6" |
946 |
classpath="" |
classpath="" |
947 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
948 |
includeAntRuntime="false" |
includeAntRuntime="false" |
1037 |
bootclasspath="@{jsr166y.jar}:${bootclasspath6}" |
bootclasspath="@{jsr166y.jar}:${bootclasspath6}" |
1038 |
classpath="" |
classpath="" |
1039 |
source="6" |
source="6" |
1040 |
|
target="6" |
1041 |
includeAntRuntime="false" |
includeAntRuntime="false" |
1042 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
1043 |
executable="${javac7}" |
executable="${javac7}" |
1129 |
debuglevel="${build.debuglevel}" |
debuglevel="${build.debuglevel}" |
1130 |
deprecation="${build.deprecation}" |
deprecation="${build.deprecation}" |
1131 |
source="${build.jsr166e.java.version}" |
source="${build.jsr166e.java.version}" |
1132 |
|
target="${build.jsr166e.java.version}" |
1133 |
classpath="" |
classpath="" |
1134 |
includeAntRuntime="false" |
includeAntRuntime="false" |
1135 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
1156 |
debuglevel="${build.debuglevel}" |
debuglevel="${build.debuglevel}" |
1157 |
deprecation="${build.deprecation}" |
deprecation="${build.deprecation}" |
1158 |
source="${build.jsr166e.java.version}" |
source="${build.jsr166e.java.version}" |
1159 |
|
target="${build.jsr166e.java.version}" |
1160 |
classpath="" |
classpath="" |
1161 |
bootclasspath="${bootclasspath7}" |
bootclasspath="${bootclasspath6}" |
1162 |
includeAntRuntime="false" |
includeAntRuntime="false" |
1163 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
1164 |
executable="${javac8}" |
executable="${javac8}" |