186 |
<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"/> |
187 |
<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"/> |
188 |
<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"/> |
189 |
<!-- The expected canonical location does not yet exist as of 2016-03 --> |
<!-- The expected canonical location does not yet exist as of 2016-04 --> |
190 |
<!-- <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"/> --> |
191 |
<property name="java9.docroot.url" value="http://download.java.net/jdk9/docs"/> |
<property name="java9.docroot.url" value="http://http://download.java.net/java/jdk9/docs"/> |
192 |
<!-- Default jdk doc location (latest stable release seems best) --> |
<!-- Default jdk doc location (latest stable release seems best) --> |
193 |
<property name="java.docroot.url" value="${java8.docroot.url}"/> |
<property name="java.docroot.url" value="${java8.docroot.url}"/> |
194 |
|
|
327 |
|
|
328 |
<delete dir="@{workdir}/JTwork" quiet="true"/> |
<delete dir="@{workdir}/JTwork" quiet="true"/> |
329 |
<delete dir="@{workdir}/JTreport" quiet="true"/> |
<delete dir="@{workdir}/JTreport" quiet="true"/> |
|
<mkdir dir="@{workdir}/JTwork/scratch"/> |
|
|
<!-- workaround for https://bugs.openjdk.java.net/browse/CODETOOLS-7901571 --> |
|
|
<mkdir dir="@{workdir}/JTreport/html"/> |
|
|
<mkdir dir="@{workdir}/JTreport/text"/> |
|
330 |
<jtreg dir="${jtreg@{target}.src.dir}" |
<jtreg dir="${jtreg@{target}.src.dir}" |
331 |
jdk="${jdk@{target}.home}" |
jdk="${jdk@{target}.home}" |
332 |
workDir="@{workdir}/JTwork" |
workDir="@{workdir}/JTwork" |
408 |
|
|
409 |
<target name="jar" |
<target name="jar" |
410 |
depends="compile" |
depends="compile" |
411 |
description="Builds library jar from compiled sources"> |
description="Builds library jar for src/main from compiled sources"> |
412 |
|
|
413 |
<jar destfile="${product.jar}"> |
<jar destfile="${product.jar}"> |
414 |
<fileset dir="${build.classes.dir}"/> |
<fileset dir="${build.classes.dir}"/> |
517 |
|
|
518 |
<target name="tck" |
<target name="tck" |
519 |
depends="jar" |
depends="jar" |
520 |
description="Runs tck tests for main directly"> |
description="Runs tck tests for src/main directly"> |
521 |
|
|
522 |
<run-tck-tests |
<run-tck-tests |
523 |
target="${build.main.java.version}" |
target="${build.main.java.version}" |
526 |
</target> |
</target> |
527 |
|
|
528 |
<target name="tck-parallelism-1" |
<target name="tck-parallelism-1" |
529 |
description="Runs tck with given common pool parallelism"> |
description="Runs tck with common pool parallelism 1"> |
530 |
<antcall target="tck"> |
<antcall target="tck"> |
531 |
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/> |
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/> |
532 |
</antcall> |
</antcall> |
533 |
</target> |
</target> |
534 |
|
|
535 |
<target name="tck-parallelism-0" |
<target name="tck-parallelism-0" |
536 |
description="Runs tck with given common pool parallelism"> |
description="Runs tck with common pool parallelism 0"> |
537 |
<antcall target="tck"> |
<antcall target="tck"> |
538 |
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/> |
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/> |
539 |
</antcall> |
</antcall> |
541 |
|
|
542 |
<target name="jtreg" |
<target name="jtreg" |
543 |
depends="jar" |
depends="jar" |
544 |
description="Runs jtreg tests for main using the jtreg ant task"> |
description="Runs jtreg tests for src/main using the jtreg ant task"> |
545 |
<run-jtreg-tests |
<run-jtreg-tests |
546 |
target="${build.main.java.version}" |
target="${build.main.java.version}" |
547 |
workdir="${build.dir}" |
workdir="${build.dir}" |
549 |
</target> |
</target> |
550 |
|
|
551 |
<target name="test" |
<target name="test" |
552 |
depends="tck, tck-parallelism-1, jtreg" |
depends="tck, tck-parallelism-1, tck-parallelism-0, jtreg" |
553 |
description="Runs tck and jtreg tests for main"> |
description="Runs tck and jtreg tests for src/main"> |
554 |
</target> |
</target> |
555 |
|
|
556 |
<target name="jtreg8" description="Runs jtreg tests with jdk8"> |
<!-- <target name="jtreg8" description="Runs jtreg tests with jdk8"> --> |
557 |
|
|
558 |
<antcall target="jtreg"> |
<!-- <antcall target="jtreg"> --> |
559 |
<param name="build.main.java.version" value="8"/> |
<!-- <param name="build.main.java.version" value="8"/> --> |
560 |
<param name="build.main.javac" value="${javac8}"/> |
<!-- <param name="build.main.javac" value="${javac8}"/> --> |
561 |
</antcall> |
<!-- </antcall> --> |
562 |
|
|
563 |
</target> |
<!-- </target> --> |
564 |
|
|
565 |
<target name="test89" |
<!-- <target name="test89" --> |
566 |
description="Runs tck and jtreg tests for main for multiple java versions"> |
<!-- description="Runs tck and jtreg tests for src/main for multiple java versions"> --> |
567 |
|
|
568 |
<antcall target="clean"/> |
<!-- <antcall target="clean"/> --> |
569 |
<antcall target="test"> |
<!-- <antcall target="test"> --> |
570 |
<param name="build.main.java.version" value="8"/> |
<!-- <param name="build.main.java.version" value="8"/> --> |
571 |
<param name="build.main.javac" value="${javac8}"/> |
<!-- <param name="build.main.javac" value="${javac8}"/> --> |
572 |
</antcall> |
<!-- </antcall> --> |
573 |
|
|
574 |
<antcall target="clean"/> |
<!-- <antcall target="clean"/> --> |
575 |
<antcall target="test"> |
<!-- <antcall target="test"> --> |
576 |
<param name="build.main.java.version" value="9"/> |
<!-- <param name="build.main.java.version" value="9"/> --> |
577 |
<param name="build.main.javac" value="${javac9}"/> |
<!-- <param name="build.main.javac" value="${javac9}"/> --> |
578 |
</antcall> |
<!-- </antcall> --> |
579 |
|
|
580 |
</target> |
<!-- </target> --> |
581 |
|
|
582 |
|
|
583 |
|
|
784 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
785 |
sourcepath="${4jdk8src.dir}:${jdk8.src.dir}" |
sourcepath="${4jdk8src.dir}:${jdk8.src.dir}" |
786 |
classpath="" |
classpath="" |
787 |
executable="${javadoc8}"> |
executable="${javadoc8}" |
788 |
|
failonerror = "true"> |
789 |
<fileset dir="${4jdk8src.dir}" defaultexcludes="yes"> |
<fileset dir="${4jdk8src.dir}" defaultexcludes="yes"> |
790 |
<include name="**/*.java"/> |
<include name="**/*.java"/> |
791 |
</fileset> |
</fileset> |
990 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
991 |
sourcepath="${4jdk7src.dir}:${jdk7.src.dir}" |
sourcepath="${4jdk7src.dir}:${jdk7.src.dir}" |
992 |
classpath="" |
classpath="" |
993 |
executable="${javadoc7}"> |
executable="${javadoc7}" |
994 |
|
failonerror = "true"> |
995 |
<fileset dir="${4jdk7src.dir}" defaultexcludes="yes"> |
<fileset dir="${4jdk7src.dir}" defaultexcludes="yes"> |
996 |
<include name="**/*.java"/> |
<include name="**/*.java"/> |
997 |
</fileset> |
</fileset> |
1086 |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
1087 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
1088 |
source="5" |
source="5" |
1089 |
executable="${javadoc7}"> |
executable="${javadoc7}" |
1090 |
|
failonerror = "true"> |
1091 |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
1092 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
1093 |
|
|
1179 |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
1180 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
1181 |
source="6" |
source="6" |
1182 |
executable="${javadoc7}"> |
executable="${javadoc7}" |
1183 |
|
failonerror = "true"> |
1184 |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
1185 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
1186 |
|
|
1393 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
1394 |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
1395 |
source="${build.jsr166e.java.version}" |
source="${build.jsr166e.java.version}" |
1396 |
executable="${javadoc7}"> |
executable="${javadoc7}" |
1397 |
|
failonerror = "true"> |
1398 |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
1399 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
1400 |
|
|