ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
(Generate patch)

Comparing jsr166/build.xml (file contents):
Revision 1.195 by jsr166, Thu Dec 17 23:55:06 2015 UTC vs.
Revision 1.235 by jsr166, Sun Mar 19 01:37:51 2017 UTC

# Line 1 | Line 1
1   <project name="jsr166" default="usage"
2 <  xmlns:if="ant:if" xmlns:unless="ant:unless">
2 >  xmlns:if="ant:if" xmlns:unless="ant:unless"
3 >  xmlns:ivy="antlib:org.apache.ivy.ant">
4  
5    <description>
6   ------------------------------------------------------------------------------
# Line 7 | Line 8
8  
9    Usage: ant [target]
10  
11 +  See http://gee.cs.oswego.edu/dl/concurrency-interest/index.html for
12 +  more details.
13 +
14    User-specific settings are read from user.properties.
15    See user.properties.sample for an explanation of some useful settings.
16  
# Line 14 | Line 18
18    itself.  Because the JDK version matters and because different
19    targets require different JDKs, we assume that users have created a
20    hierarchy containing:
17  $HOME/jdk/jdk6
21    $HOME/jdk/jdk7
22    $HOME/jdk/jdk8
23    $HOME/jdk/jdk9
24 +  $HOME/jdk/jdk10
25    where each of the above is a JDK or a symlink to same, and
22  $HOME/jdk/src/jdk6
26    $HOME/jdk/src/jdk7
27    $HOME/jdk/src/jdk8
28    $HOME/jdk/src/jdk9
29 +  $HOME/jdk/src/jdk10
30    where each of the above is a complete JDK source tree
31    (e.g. mercurial forest) or a symlink to same.
32  
33    Alternatively, define ant variables thus:
34 <  ant -Djdk$N.home=...
35 <  for $N in 6 7 8 9 ...
34 >  ant -Djdk$N.home=... -Djdk$N.src.home=...
35 >  for $N in 7 8 9 10 ...
36  
37 <  As of 2015-09, there is incomplete hacky support for jigsaw
34 <  Build for jigsaw using something like:
35 <  ant -Djdk9.home="$HOME/jdk/jigsaw" -Djdk9.src.dir="$HOME/jdk/src/jigsaw" clean test dist
36 <  "docs" target is still broken.
37 >  As of 2016-03, the sources in src/main are for jdk9+ only.
38   ------------------------------------------------------------------------------
39    </description>
40  
41 <  <!-- Display main targets by running 'ant -projecthelp' -->
41 >  <!-- Run 'ant -projecthelp' (default target) -->
42    <target name="usage">
43      <java classname="org.apache.tools.ant.Main">
44        <arg value="-projecthelp" />
# Line 62 | Line 63
63    <property name="build.classes.dir"           location="${build.dir}/classes"/>
64    <property name="build.testcases.dir"         location="${build.dir}/testcases"/>
65    <property name="build.loops.dir"             location="${build.dir}/loops"/>
65  <property name="build.reports.dir"           location="${build.dir}/reports"/>
66  
67    <property name="build.4jdk7.dir"             location="${build.dir}/jsr166-4jdk7"/>
68    <property name="build.4jdk7.classes.dir"     location="${build.4jdk7.dir}/classes"/>
69    <property name="build.4jdk7.tck.classes.dir" location="${build.4jdk7.dir}/tck-classes"/>
70    <property name="build.4jdk7.docs.dir"        location="${build.4jdk7.dir}/docs"/>
71  
72 +  <property name="build.4jdk8.dir"             location="${build.dir}/jsr166-4jdk8"/>
73 +  <property name="build.4jdk8.classes.dir"     location="${build.4jdk8.dir}/classes"/>
74 +  <property name="build.4jdk8.tck.classes.dir" location="${build.4jdk8.dir}/tck-classes"/>
75 +  <property name="build.4jdk8.docs.dir"        location="${build.4jdk8.dir}/docs"/>
76 +
77    <property name="build.jsr166x.dir"           location="${build.dir}/jsr166x"/>
78    <property name="build.jsr166y.dir"           location="${build.dir}/jsr166y"/>
79    <property name="build.jsr166e.dir"           location="${build.dir}/jsr166e"/>
# Line 85 | Line 90
90    <macrodef name="defjdklocations">
91      <attribute name="v"/>
92      <sequential>
93 <    <property name="jdk@{v}.home"   location="${jdks.home}/jdk@{v}"/>
94 <    <property name="java@{v}"       location="${jdk@{v}.home}/bin/java"/>
95 <    <property name="javac@{v}"      location="${jdk@{v}.home}/bin/javac"/>
96 <    <property name="javadoc@{v}"    location="${jdk@{v}.home}/bin/javadoc"/>
93 >    <property name="jdk@{v}.home"     location="${jdks.home}/jdk@{v}"/>
94 >    <property name="java@{v}"         location="${jdk@{v}.home}/bin/java"/>
95 >    <property name="javac@{v}"        location="${jdk@{v}.home}/bin/javac"/>
96 >    <property name="javadoc@{v}"      location="${jdk@{v}.home}/bin/javadoc"/>
97 >    <property name="jdk@{v}.src.home" location="${jdks.home}/src/jdk@{v}"/>
98      <local name="have.java.base"/>
99      <available property="have.java.base"
100 <      file="${jdks.home}/src/jdk@{v}/jdk/src/java.base/share/classes" type="dir"/>
101 <    <property name="jdk@{v}src.dir" location="${jdks.home}/src/jdk@{v}/jdk/src/java.base/share/classes"
100 >      file="${jdk@{v}.src.home}/jdk/src/java.base/share/classes" type="dir"/>
101 >    <property name="jdk@{v}.src.dir" location="${jdk@{v}.src.home}/jdk/src/java.base/share/classes"
102        if:set="have.java.base"/>
103 <    <property name="jdk@{v}src.dir" location="${jdks.home}/src/jdk@{v}/jdk/src/share/classes"
103 >    <property name="jdk@{v}.src.dir" location="${jdk@{v}.src.home}/jdk/src/share/classes"
104        unless:set="have.java.base"/>
105      <local name="modules"/>
106      <available property="modules" file="${jdk@{v}.home}/jmods" type="dir"/>
# Line 127 | Line 133
133    <defjdklocations v="7"/>
134    <defjdklocations v="8"/>
135    <defjdklocations v="9"/>
136 +  <defjdklocations v="10"/>
137  
138    <!-- Source locations -->
139    <property name="src.dir"              location="${basedir}/src/main"/>
# Line 134 | Line 141
141    <property name="loops.src.dir"        location="${basedir}/src/loops"/>
142    <property name="tck.src.dir"          location="${test.src.dir}/tck"/>
143    <property name="jtreg7.src.dir"       location="${test.src.dir}/jtreg-jdk7"/>
144 <  <property name="jtreg8.src.dir"       location="${test.src.dir}/jtreg"/>
144 >  <property name="jtreg8.src.dir"       location="${test.src.dir}/jtreg-jdk8"/>
145    <property name="jtreg9.src.dir"       location="${test.src.dir}/jtreg"/>
146 +  <property name="jtreg10.src.dir"      location="${test.src.dir}/jtreg"/>
147    <property name="jtreg.src.dir"        location="${jtreg9.src.dir}"/>
148    <property name="lib.dir"              location="${basedir}/lib"/>
149    <property name="dist.dir"             location="${basedir}/dist"/>
150    <property name="topsrc.dir"           location="${basedir}/src"/>
151    <property name="4jdk7src.dir"         location="${topsrc.dir}/jdk7"/>
152 +  <property name="4jdk8src.dir"         location="${topsrc.dir}/jdk8"/>
153    <property name="jsr166xsrc.dir"       location="${topsrc.dir}/jsr166x"/>
154    <property name="jsr166ysrc.dir"       location="${topsrc.dir}/jsr166y"/>
155    <property name="jsr166esrc.dir"       location="${topsrc.dir}/jsr166e"/>
# Line 149 | Line 158
158    <!-- Javadoc locations -->
159    <property name="docs.dir"          location="${build.dir}/docs"/>
160    <property name="4jdk7docs.dir"     location="${build.4jdk7.dir}/docs"/>
161 +  <property name="4jdk8docs.dir"     location="${build.4jdk8.dir}/docs"/>
162    <property name="jsr166xdocs.dir"   location="${build.jsr166x.dir}/docs"/>
163    <property name="jsr166ydocs.dir"   location="${build.jsr166y.dir}/docs"/>
164    <property name="jsr166edocs.dir"   location="${build.jsr166e.dir}/docs"/>
# Line 156 | Line 166
166  
167    <property name="dist.docs.dir"          location="${dist.dir}/docs"/>
168    <property name="dist.4jdk7docs.dir"     location="${dist.dir}/jsr166-4jdk7docs"/>
169 +  <property name="dist.4jdk8docs.dir"     location="${dist.dir}/jsr166-4jdk8docs"/>
170    <property name="dist.jsr166xdocs.dir"   location="${dist.dir}/jsr166xdocs"/>
171    <property name="dist.jsr166ydocs.dir"   location="${dist.dir}/jsr166ydocs"/>
172    <property name="dist.jsr166edocs.dir"   location="${dist.dir}/jsr166edocs"/>
# Line 164 | Line 175
175    <!-- Jar locations -->
176    <property name="product.jar"      location="${build.dir}/jsr166.jar"/>
177    <property name="4jdk7product.jar" location="${build.4jdk7.dir}/jsr166-4jdk7.jar"/>
178 +  <property name="4jdk8product.jar" location="${build.4jdk8.dir}/jsr166-4jdk8.jar"/>
179    <property name="jsr166x.jar"      location="${build.jsr166x.dir}/jsr166x.jar"/>
180    <property name="jsr166y.jar"      location="${build.jsr166y.dir}/jsr166y.jar"/>
181    <property name="jsr166e.jar"      location="${build.jsr166e.dir}/jsr166e.jar"/>
# Line 175 | Line 187
187    <property name="java6.docroot.url"      value="http://docs.oracle.com/javase/6/docs"/>
188    <property name="java7.docroot.url"      value="http://docs.oracle.com/javase/7/docs"/>
189    <property name="java8.docroot.url"      value="http://docs.oracle.com/javase/8/docs"/>
190 <  <!-- The expected canonical location does not yet exist as of 2015-11 -->
190 >  <!-- The expected canonical location does not yet exist as of 2016-04 -->
191    <!-- <property name="java9.docroot.url" value="http://docs.oracle.com/javase/9/docs"/> -->
192 <  <property name="java9.docroot.url"      value="http://download.java.net/jdk9/docs"/>
192 >  <property name="java9.docroot.url"      value="http://download.java.net/java/jdk9/docs"/>
193    <!-- Default jdk doc location (latest stable release seems best) -->
194    <property name="java.docroot.url"       value="${java8.docroot.url}"/>
195  
# Line 209 | Line 221
221      <attribute name="compile-target" default="@{target}"/>
222      <attribute name="workdir"/>
223      <attribute name="classes"/>
224 <    <attribute name="jvmflags" default="-ea -esa -Djsr166.testImplementationDetails=true"/>
224 >    <!--
225 >        <attribute name="jvmflags" default="-XX:+UseParallelGC -XX:-UseBiasedLocking -ea -esa -Djsr166.testImplementationDetails=true"/>
226 >    -->
227 >        <attribute name="jvmflags" default="-ea -esa -Djsr166.testImplementationDetails=true"/>
228      <element name="javac-elements" optional="true"/>
229  
230      <sequential>
# Line 231 | Line 246
246             classpath="${junit.jar}"
247             includeAntRuntime="false"
248             includeJavaRuntime="false"
249 +           encoding="ASCII"
250             executable="${javac@{compile-target}}"
251             fork="true">
252  
253        <include name="*.java"/>
254        <compilerarg value="-XDignore.symbol.file=true"/>
255        <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation,-try"/>
256 +      <compilerarg value="-Xdoclint:reference/private"/>
257        <compilerarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
258 <      <compilerarg value="-Xoverride:${build.classes.dir}" if:set="modules"/>
258 >      <compilerarg value="--patch-module=java.base=@{classes}" if:set="modules"/>
259        <compilerarg line="${build.args}"/>
260        <javac-elements/>
261  
# Line 249 | Line 266
266            jvm="${java@{target}}"
267            fork="true">
268          <jvmarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
269 <        <jvmarg value="-Xoverride:${build.classes.dir}" if:set="modules"/>
269 >        <jvmarg value="--patch-module=java.base=@{classes}" if:set="modules"/>
270 >        <jvmarg value="--add-opens=java.base/java.lang=ALL-UNNAMED" if:set="modules"/>
271 >        <jvmarg value="--add-opens=java.base/java.util=ALL-UNNAMED" if:set="modules"/>
272 >        <jvmarg value="--add-opens=java.base/java.util.concurrent=ALL-UNNAMED" if:set="modules"/>
273 >        <jvmarg value="--add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED" if:set="modules"/>
274 >        <jvmarg value="--add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED" if:set="modules"/>
275          <jvmarg line="@{jvmflags}"/>
276 +        <!-- ant -Dvmoptions="-Xmx8m" -Djsr166.tckTestClass=CompletableFutureTest tck -->
277 +        <jvmarg line="${vmoptions}" if:set="vmoptions"/>
278  
279 <        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck -->
279 >        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck -->
280          <syspropertyset id="system-properties-used-by-tck">
281            <propertyref prefix="java.util.concurrent.ForkJoinPool"/>
282            <propertyref prefix="jsr166."/>
283 +          <propertyref name="test.timeout.factor"/>
284          </syspropertyset>
285  
286          <classpath>
# Line 277 | Line 302
302    <fileset dir="${jtreg8.src.dir}">
303      <patternset id="jdk8.jtreg.tests">
304        <include name="**/*.java"/>
280      <exclude name="**/SpliteratorCharacteristics.java"/>
281      <!-- https://bugs.openjdk.java.net/browse/JDK-6842353 -->
282      <exclude name="**/GCDuringIteration.java"/>
305      </patternset>
306    </fileset>
307  
# Line 311 | Line 333
333      </condition>
334  
335      <delete dir="@{workdir}/JTwork"   quiet="true"/>
314    <delete dir="@{workdir}/JTreport" quiet="true"/>
315    <mkdir dir="@{workdir}/JTwork/scratch"/>
316    <!-- workaround for https://bugs.openjdk.java.net/browse/CODETOOLS-7901571 -->
317    <mkdir dir="@{workdir}/JTreport/html"/>
318    <mkdir dir="@{workdir}/JTreport/text"/>
336      <jtreg dir="${jtreg@{target}.src.dir}"
337             jdk="${jdk@{target}.home}"
338 <           workDir="@{workdir}/JTwork"
322 <           reportDir="@{workdir}/JTreport">
338 >           workDir="@{workdir}/JTwork">
339        <patternset refid="jdk@{target}.jtreg.tests"/>
340        <arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
341 <      <arg value="-Xoverride:${build.classes.dir}" if:set="modules"/>
341 >      <arg value="-javacoptions:--patch-module java.base=@{classes}" if:set="modules"/>
342 >      <arg value="-vmoptions:--patch-module java.base=@{classes}" if:set="modules"/>
343        <arg value="-agentvm"/>
344 +      <arg value="-noreport"/>
345        <arg value="-verbose:${jtreg.verbose}"/>
346        <arg value="-vmoptions:-esa -ea"/>
347        <arg value="-automatic"/>
# Line 349 | Line 367
367    <property name="build.main.javac" value="${javac9}"/>
368  
369    <target name="dists"
370 <          depends="dist, 4jdk7dist, jsr166edist, jsr166ydist, extra166ydist, jsr166xdist"
370 >          depends="dist, 4jdk8dist, 4jdk7dist, jsr166edist, jsr166ydist, extra166ydist, jsr166xdist"
371            description="Builds all public jars and docs"/>
372  
373    <target name="compile"
# Line 378 | Line 396
396             classpath=""
397             includeAntRuntime="false"
398             includeJavaRuntime="false"
399 +           encoding="ASCII"
400             executable="${build.main.javac}"
401             fork="true">
402  
403        <include name="**/*.java"/>
404 <      <compilerarg value="-Xmodule:java.base" if:set="modules"/>
404 >      <compilerarg value="--patch-module=java.base=${src.dir}" if:set="modules"/>
405        <compilerarg value="-Xprefer:source"/>
406        <compilerarg value="-XDignore.symbol.file=true"/>
407        <compilerarg value="-Xlint:all"/>
408        <compilerarg value="-Werror"/>
409 <      <compilerarg value="-Xdoclint:all/protected"/>
409 >      <compilerarg value="-Xdoclint:all/protected,reference/private"/>
410        <compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
411        <compilerarg line="${build.args}"/>
412  
413      </javac>
395
396    <!-- We need jdk9's Contended annotation, but at compile time only -->
397    <delete file="${destdir}/jdk/internal/vm/annotation/Contended.class"/>
414    </target>
415  
416  
417    <target name="jar"
418            depends="compile"
419 <          description="Builds library jar from compiled sources">
420 <
419 >          description="Builds library jar for src/main from compiled sources">
420 >    <local name="subdir"/>
421 >    <available property="subdir" file="${build.classes.dir}/java.base" type="dir" value="/java.base"/>
422      <jar destfile="${product.jar}">
423 <      <fileset dir="${build.classes.dir}"/>
423 >      <fileset dir="${build.classes.dir}${subdir}"/>
424        <manifest>
425          <attribute name="Built-By" value="${user.name}"/>
426          <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
# Line 421 | Line 438
438      <!-- the packagenames="none" hack below prevents scanning the -->
439      <!-- sourcepath for packages -->
440  
441 + <!-- TODO: sourcepath="${src.dir}:${jdk9.src.dir}" -->
442 + <!-- TODO: sourcepath="${src.dir}:${jdk9.src.dir}:${jdk9.src.home}/jdk/src/java.logging/share/classes" -->
443 + <!-- TODO: sourcepath="${src.dir}:${jdk9.home}/src.zip" -->
444 + <!-- TODO: <arg line="-sourcepath ${src.dir}:${jdk9.home}/src.zip"/> -->
445 + <!-- TODO: <arg line="- -module-source-path ${jdk9.home}/src.zip"/> -->
446      <javadoc destdir="${docs.dir}"
447               packagenames="none"
448               link="${java9.api.url}"
449               overview="${src.dir}/intro.html"
450               access="${build.javadoc.access}"
451 <             sourcepath="${src.dir}:${jdk9src.dir}"
451 >             sourcepath="${src.dir}"
452               classpath=""
453               executable="${javadoc9}">
454        <fileset dir="${src.dir}" defaultexcludes="yes">
# Line 435 | Line 457
457        <arg line="-Xdocrootparent ${java9.docroot.url}"/>
458        <arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
459        <arg value="-XDignore.symbol.file=true"/>
460 < <!--  TODO     <arg value="-Xmodule:java.base"/> -->
460 >      <arg value="--patch-module=java.base=${src.dir}"/>
461        <arg value="-tag"/>
462        <arg value="${javadoc.jls.option}"/>
463 + <!-- @apiNote currently unused -->
464 + <!--       <arg value="-tag"/> -->
465 + <!--       <arg value="apiNote:a:API Note:"/> -->
466        <arg value="-tag"/>
467 <      <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/>
443 <      <arg value="-tag"/>
444 <      <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
467 >      <arg value="implSpec:a:Implementation Requirements:"/>
468        <arg value="-tag"/>
469 <      <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
469 >      <arg value="implNote:a:Implementation Note:"/>
470 > <!-- tags added in jdk9: currently unused -->
471 > <!--       <arg value="-tag"/> -->
472 > <!--       <arg value="revised:X"/> -->
473 > <!--       <arg value="-tag"/> -->
474 > <!--       <arg value="spec:X"/> -->
475      </javadoc>
476    </target>
477  
# Line 504 | Line 532
532  
533    <target name="tck"
534            depends="jar"
535 <          description="Runs tck tests for main directly">
535 >          description="Runs tck tests for src/main directly">
536  
537      <run-tck-tests
538        target="${build.main.java.version}"
# Line 513 | Line 541
541    </target>
542  
543    <target name="tck-parallelism-1"
544 <          description="Runs tck with given common pool parallelism">
544 >          description="Runs tck with common pool parallelism 1">
545      <antcall target="tck">
546        <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/>
547      </antcall>
548    </target>
549  
550    <target name="tck-parallelism-0"
551 <          description="Runs tck with given common pool parallelism">
551 >          description="Runs tck with common pool parallelism 0">
552      <antcall target="tck">
553        <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/>
554      </antcall>
555    </target>
556  
557 +  <target name="tck-security-manager"
558 +          description="Runs tck with a security manager">
559 +    <antcall target="tck">
560 +      <param name="jsr166.useSecurityManager" value="true"/>
561 +    </antcall>
562 +  </target>
563 +
564    <target name="jtreg"
565            depends="jar"
566 <          description="Runs jtreg tests for main using the jtreg ant task">
566 >          description="Runs jtreg tests for src/main using the jtreg ant task">
567      <run-jtreg-tests
568         target="${build.main.java.version}"
569         workdir="${build.dir}"
# Line 536 | Line 571
571    </target>
572  
573    <target name="test"
574 <          depends="tck, tck-parallelism-1, jtreg"
575 <          description="Runs tck and jtreg tests for main">
574 >          depends="tck, tck-parallelism-1, tck-parallelism-0, jtreg"
575 >          description="Runs tck and jtreg tests for src/main">
576    </target>
577  
578 <  <target name="jtreg8" description="Runs jtreg tests with jdk8">
578 > <!--   <target name="jtreg8" description="Runs jtreg tests with jdk8"> -->
579  
580 <    <antcall target="jtreg">
581 <      <param name="build.main.java.version" value="8"/>
582 <      <param name="build.main.javac" value="${javac8}"/>
583 <    </antcall>
580 > <!--     <antcall target="jtreg"> -->
581 > <!--       <param name="build.main.java.version" value="8"/> -->
582 > <!--       <param name="build.main.javac" value="${javac8}"/> -->
583 > <!--     </antcall> -->
584  
585 <  </target>
585 > <!--   </target> -->
586  
587 <  <target name="test89"
588 <          description="Runs tck and jtreg tests for main for multiple java versions">
587 > <!--   <target name="test89" -->
588 > <!--           description="Runs tck and jtreg tests for src/main for multiple java versions"> -->
589  
590 <    <antcall target="clean"/>
591 <    <antcall target="test">
592 <      <param name="build.main.java.version" value="8"/>
593 <      <param name="build.main.javac" value="${javac8}"/>
594 <    </antcall>
590 > <!--     <antcall target="clean"/> -->
591 > <!--     <antcall target="test"> -->
592 > <!--       <param name="build.main.java.version" value="8"/> -->
593 > <!--       <param name="build.main.javac" value="${javac8}"/> -->
594 > <!--     </antcall> -->
595  
596 <    <antcall target="clean"/>
597 <    <antcall target="test">
598 <      <param name="build.main.java.version" value="9"/>
599 <      <param name="build.main.javac" value="${javac9}"/>
600 <    </antcall>
596 > <!--     <antcall target="clean"/> -->
597 > <!--     <antcall target="test"> -->
598 > <!--       <param name="build.main.java.version" value="9"/> -->
599 > <!--       <param name="build.main.javac" value="${javac9}"/> -->
600 > <!--     </antcall> -->
601  
602 <  </target>
602 > <!--   </target> -->
603  
604  
605  
# Line 594 | Line 629
629    <!-- Various demos and test programs -->
630  
631  
632 <  <target name="loops" depends="configure-compiler"
633 <          description="Benchmark from Doug Lea's AQS paper">
632 >  <!-- description="Benchmark from Doug Lea's AQS paper" -->
633 >  <target name="loops" depends="configure-compiler">
634  
635      <mkdir dir="${build.loops.dir}"/>
636  
# Line 606 | Line 641
641        deprecation="${build.deprecation}"
642             source="${build.sourcelevel}"
643             target="${build.sourcelevel}"
644 +         encoding="ASCII"
645               fork="true">
646  
647        <compilerarg line="${build.args}"/>
# Line 633 | Line 669
669             deprecation="${build.deprecation}"
670             includeAntRuntime="false"
671             includeJavaRuntime="false"
672 +           encoding="ASCII"
673             executable="${javac9}"
674             fork="true">
675  
# Line 647 | Line 684
684    </target>
685  
686  
687 +  <!-- jsr166 4jdk8 -->
688 +
689 +  <target name="4jdk8compile"
690 +          depends="configure-compiler"
691 +          description="Compiles src/jdk8 sources, targeting jdk8">
692 +
693 +    <mkdir dir="${build.4jdk8.classes.dir}"/>
694 +
695 +    <javac srcdir="${4jdk8src.dir}"
696 +           destdir="${build.4jdk8.classes.dir}"
697 +           debug="${build.debug}"
698 +           debuglevel="${build.debuglevel}"
699 +           deprecation="${build.deprecation}"
700 +           source="8"
701 +           target="8"
702 +           classpath=""
703 +           bootclasspath="${bootclasspath8}"
704 +           includeAntRuntime="false"
705 +           includeJavaRuntime="false"
706 +           encoding="ASCII"
707 +           executable="${javac8}"
708 +           fork="true">
709 +
710 +      <include name="**/*.java"/>
711 +      <compilerarg value="-Xprefer:source"/>
712 +      <compilerarg value="-XDignore.symbol.file=true"/>
713 +      <compilerarg value="-Xlint:all"/>
714 +      <compilerarg value="-Werror"/>
715 +      <compilerarg line="${build.args}"/>
716 +
717 +    </javac>
718 +  </target>
719 +
720 +  <target name="4jdk8doclint"
721 +          depends="configure-compiler"
722 +          description="Finds doclint warnings">
723 +
724 +    <mkdir dir="${build.4jdk8.classes.dir}"/>
725 +
726 +    <javac srcdir="${4jdk8src.dir}"
727 +           destdir="${build.4jdk8.classes.dir}"
728 +           debug="${build.debug}"
729 +           debuglevel="${build.debuglevel}"
730 +           deprecation="${build.deprecation}"
731 +           source="8"
732 +           target="8"
733 +           classpath=""
734 +           bootclasspath="${bootclasspath8}"
735 +           includeAntRuntime="false"
736 +           includeJavaRuntime="false"
737 +           encoding="ASCII"
738 +           executable="${javac8}"
739 +           fork="true">
740 +
741 +      <include name="**/*.java"/>
742 +      <compilerarg value="-Xprefer:source"/>
743 +      <compilerarg value="-XDignore.symbol.file=true"/>
744 +      <compilerarg value="-Xlint:all"/>
745 +      <compilerarg value="-Xdoclint:all/protected,reference/private"/>
746 +      <compilerarg line="${build.args}"/>
747 +
748 +    </javac>
749 +  </target>
750 +
751 +
752 +  <target name="4jdk8jar"
753 +          depends="4jdk8compile"
754 +          description="Builds library jar from compiled sources">
755 +
756 +    <jar destfile="${4jdk8product.jar}">
757 +      <fileset dir="${build.4jdk8.classes.dir}"/>
758 +      <manifest>
759 +        <attribute name="Built-By" value="${user.name}"/>
760 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
761 +      </manifest>
762 +    </jar>
763 +
764 +  </target>
765 +
766 +
767 +  <target name="4jdk8-tck"
768 +          depends="4jdk8jar"
769 +          description="Runs tck tests for jsr166-4jdk8 directly">
770 +
771 +    <run-tck-tests
772 +      target="8"
773 +      workdir="${build.4jdk8.dir}"
774 +      classes="${4jdk8product.jar}">
775 +      <javac-elements>
776 +        <!-- JDK9+ test classes -->
777 +        <exclude name="*9Test.java"/>
778 +        <exclude name="*10Test.java"/>
779 +      </javac-elements>
780 +    </run-tck-tests>
781 +  </target>
782 +
783 +
784 +  <target name="4jdk8-jtreg"
785 +          depends="4jdk8jar"
786 +          description="Runs jtreg tests for jsr166-4jdk8 using the jtreg ant task">
787 +    <run-jtreg-tests
788 +       target="8"
789 +       workdir="${build.4jdk8.dir}"
790 +       classes="${4jdk8product.jar}"/>
791 +  </target>
792 +
793 +
794 +  <target name="4jdk8-test"
795 +          depends="4jdk8-tck, 4jdk8-jtreg"
796 +          description="Runs tck and jtreg tests for jsr166-4jdk8">
797 +  </target>
798 +
799 +
800 +  <target name="4jdk8docs"
801 +          description="Builds javadocs for src/jdk8 to dist dir">
802 +
803 +    <delete dir="${4jdk8docs.dir}"/>
804 +    <mkdir dir="${4jdk8docs.dir}"/>
805 +
806 +    <javadoc destdir="${4jdk8docs.dir}"
807 +             packagenames="none"
808 +             link="${java8.api.url}"
809 +             overview="${4jdk8src.dir}/intro.html"
810 +             access="${build.javadoc.access}"
811 +             sourcepath="${4jdk8src.dir}:${jdk8.src.dir}"
812 +             classpath=""
813 +             executable="${javadoc8}"
814 +             failonerror = "true">
815 +      <fileset dir="${4jdk8src.dir}" defaultexcludes="yes">
816 +        <include name="**/*.java"/>
817 +      </fileset>
818 +      <arg line="-Xdocrootparent ${java8.docroot.url}"/>
819 +      <arg value="-XDignore.symbol.file=true"/>
820 +      <arg value="-tag"/>
821 +      <arg value="${javadoc.jls.option}"/>
822 + <!-- @apiNote currently unused -->
823 + <!--       <arg value="-tag"/> -->
824 + <!--       <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/> -->
825 +      <arg value="-tag"/>
826 +      <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
827 +      <arg value="-tag"/>
828 +      <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
829 +    </javadoc>
830 +  </target>
831 +
832 +
833 +  <target name="4jdk8dist"
834 +          depends="4jdk8dist-jar, 4jdk8dist-docs"
835 +          description="Puts all distributable products in single hierarchy"/>
836 +
837 +
838 +  <target name="4jdk8clean"
839 +          description="Removes all 4jdk8 build products">
840 +
841 +    <delete dir="${build.4jdk8.dir}"/>
842 +
843 +  </target>
844 +
845 +
846 +  <target name="4jdk8dist-jar"
847 +          depends="4jdk8clean, 4jdk8jar">
848 +    <copy file="${4jdk8product.jar}" todir="${dist.dir}"/>
849 +  </target>
850 +
851 +
852 +  <target name="4jdk8dist-docs"
853 +          depends="4jdk8clean, 4jdk8docs">
854 +    <mirror-dir src="${4jdk8docs.dir}" dst="${dist.4jdk8docs.dir}"/>
855 +  </target>
856 +
857 +
858 +
859    <!-- jsr166 4jdk7 -->
860  
861    <target name="4jdk7compile"
# Line 666 | Line 875
875             bootclasspath="${bootclasspath6}"
876             includeAntRuntime="false"
877             includeJavaRuntime="false"
878 +           encoding="ASCII"
879             executable="${javac7}"
880             fork="true">
881  
# Line 696 | Line 906
906             bootclasspath="${bootclasspath6}"
907             includeAntRuntime="false"
908             includeJavaRuntime="false"
909 +           encoding="ASCII"
910             executable="${javac8}"
911             fork="true">
912  
# Line 751 | Line 962
962    </target>
963  
964  
965 +  <!-- Runs tck tests for jsr166-4jdk7 via junit task (dead experiment) -->
966    <target name="4jdk7-tck-junit"
967 <          depends="4jdk7compile"
756 <          description="Runs tck tests for jsr166-4jdk7 via junit task (experimental)">
967 >          depends="4jdk7compile">
968  
969      <junit printsummary="true"
970             showoutput="true"
# Line 806 | Line 1017
1017               link="${java7.api.url}"
1018               overview="${4jdk7src.dir}/intro.html"
1019               access="${build.javadoc.access}"
1020 <             sourcepath="${4jdk7src.dir}:${jdk7src.dir}"
1020 >             sourcepath="${4jdk7src.dir}:${jdk7.src.dir}"
1021               classpath=""
1022 <             executable="${javadoc7}">
1022 >             executable="${javadoc7}"
1023 >             failonerror = "true">
1024        <fileset dir="${4jdk7src.dir}" defaultexcludes="yes">
1025          <include name="**/*.java"/>
1026        </fileset>
# Line 862 | Line 1074
1074             target="5"
1075             includeAntRuntime="false"
1076             includeJavaRuntime="false"
1077 +           encoding="ASCII"
1078             executable="${javac7}"
1079             fork="true">
1080  
# Line 900 | Line 1113
1113               packagenames="jsr166x.*"
1114               link="${java.api.url}"
1115               access="${build.javadoc.access}"
1116 <             sourcepath="${topsrc.dir}:${jdk6src.dir}"
1116 >             sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1117               bootclasspath="${bootclasspath6}"
1118               source="5"
1119 <             executable="${javadoc7}">
1119 >             executable="${javadoc7}"
1120 >             failonerror = "true">
1121        <arg line="-Xdocrootparent ${java.docroot.url}"/>
1122        <arg value="-XDignore.symbol.file=true"/>
1123  
# Line 954 | Line 1168
1168             bootclasspath="${bootclasspath6}"
1169             includeAntRuntime="false"
1170             includeJavaRuntime="false"
1171 +           encoding="ASCII"
1172             executable="${javac7}"
1173             fork="true">
1174  
# Line 992 | Line 1207
1207               packagenames="jsr166y.*"
1208               link="${java.api.url}"
1209               access="${build.javadoc.access}"
1210 <             sourcepath="${topsrc.dir}:${jdk6src.dir}"
1210 >             sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1211               bootclasspath="${bootclasspath6}"
1212               source="6"
1213 <             executable="${javadoc7}">
1213 >             executable="${javadoc7}"
1214 >             failonerror = "true">
1215        <arg line="-Xdocrootparent ${java.docroot.url}"/>
1216        <arg value="-XDignore.symbol.file=true"/>
1217  
# Line 1047 | Line 1263
1263             target="6"
1264             includeAntRuntime="false"
1265             includeJavaRuntime="false"
1266 +           encoding="ASCII"
1267             executable="${javac7}"
1268             fork="true">
1269  
# Line 1085 | Line 1302
1302               packagenames="extra166y.*"
1303               link="${java.api.url}"
1304               access="${build.javadoc.access}"
1305 <             sourcepath="${topsrc.dir}:${jdk6src.dir}"
1305 >             sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1306               bootclasspath="${bootclasspath6}"
1307               source="6"
1308               executable="${javadoc7}">
# Line 1206 | Line 1423
1423               packagenames="jsr166e.*"
1424               link="${java.api.url}"
1425               access="${build.javadoc.access}"
1426 <             sourcepath="${topsrc.dir}:${jdk6src.dir}"
1426 >             sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1427               source="${build.jsr166e.java.version}"
1428 <             executable="${javadoc7}">
1428 >             executable="${javadoc7}"
1429 >             failonerror = "true">
1430        <arg line="-Xdocrootparent ${java.docroot.url}"/>
1431        <arg value="-XDignore.symbol.file=true"/>
1432  
# Line 1293 | Line 1511
1511      </antcall>
1512    </target>
1513  
1514 + <!-- ==============================================================
1515 +  Running guava tests against jsr166 code
1516 + =================================================================== -->
1517 +
1518 + <!-- <ivy:cachepath pathid="lib.path.id" inline="true" conf="*" -->
1519 + <!--   organisation="com.google.guava" module="guava-testlib" revision="21.0"/> -->
1520 + <!-- <property name="guava.version" value="21.0"/> -->
1521 +
1522 + <!-- HOWTO debug print a path id -->
1523 + <!-- <pathconvert property="guava.testlib.classpath" refid="guava.testlib.classpath" /> -->
1524 + <!-- <echo message="guava.testlib.classpath=${guava.testlib.classpath}"/> -->
1525 +
1526 + <!-- <ivy:retrieve pathid="guava.tests.classpath" type="jar" inline="true" conf="*" pattern="${lib.dir}/[type]/[artifact].[ext]" -->
1527 + <!--   organisation="com.google.guava" module="guava-tests"/> -->
1528 + <!-- <get src="http://repo2.maven.org/maven2/com/google/guava/guava-tests/${guava.version}/guava-tests-${guava.version}-tests.jar" -->
1529 + <!--   dest="${lib.dir}/jar/guava-tests-tests.jar" usetimestamp="true"/> -->
1530 + <!--     <ivy:cachepath pathid="lib.path.id" inline="true" conf="*" type="*" -->
1531 + <!--       organisation="com.google.guava" module="guava-testlib" revision="${guava.version}"/> -->
1532 +
1533 + <!-- <test name="com.google.common.collect.testing.TestsForQueuesInJavaUtil"/> -->
1534 + <!-- <test name="com.google.common.collect.testing.TestsForListsInJavaUtil"/> -->
1535 + <!-- <test name="com.google.common.collect.testing.TestsForSetsInJavaUtil"/> -->
1536 + <!-- <test name="com.google.common.collect.testing.TestsForMapsInJavaUtil"/> -->
1537 +
1538 + <!-- <ivy:retrieve pathid="guava.testlib.classpath" -->
1539 + <!--   type="*" inline="true" conf="*(private),*(public)" -->
1540 + <!--   pattern="${guava.dir}/[artifact].[ext]" -->
1541 + <!--   organisation="com.google.guava" module="guava-testlib"/> -->
1542 +
1543 + <!-- Work around bug below by downloading guava-testlib-tests.jar "by hand": -->
1544 + <!-- https://issues.apache.org/jira/browse/IVY-1444 -->
1545 + <!-- maven tests artifacts cannot be downloaded because they are mapped to private configurations -->
1546 +
1547 +  <target name="init-ivy">
1548 +    <get src="http://repo2.maven.org/maven2/org/apache/ivy/ivy/2.4.0/ivy-2.4.0.jar"
1549 +         dest="${build.dir}/ivy.jar" usetimestamp="true" skipexisting="true"/>
1550 +    <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant"
1551 +             classpath="${build.dir}/ivy.jar"/>
1552 +  </target>
1553 +
1554 +  <target name="guava-tests" depends="jar, init-ivy"
1555 +          description="Guava tests run against jsr166 collections">
1556 +    <property name="guava.dir" value="${build.dir}/guava-testlib"/>
1557 +    <mkdir dir="${guava.dir}"/>
1558 +    <ivy:retrieve pathid="guava.testlib.classpath"
1559 +      type="jar,bundle" inline="true" conf="default,master"
1560 +      pattern="${guava.dir}/[artifact].[ext]"
1561 +      organisation="com.google.guava" module="guava-testlib"/>
1562 +    <property name="guava.version" value="21.0"/>
1563 +    <get src="http://repo2.maven.org/maven2/com/google/guava/guava-testlib/${guava.version}/guava-testlib-${guava.version}-tests.jar"
1564 +         dest="${guava.dir}/guava-testlib-tests.jar" usetimestamp="true"/>
1565 +    <junit printsummary="true" showoutput="true" haltonfailure="true"
1566 +           jvm="${java9}" fork="true">
1567 +      <jvmarg line="-ea -esa --patch-module java.base=${product.jar}"/>
1568 +      <formatter type="brief"/>
1569 +      <classpath>
1570 +        <pathelement location="${guava.dir}/guava-testlib-tests.jar"/>
1571 +        <path refid="guava.testlib.classpath"/>
1572 +      </classpath>
1573 +
1574 +      <!-- "6" in "OpenJdk6Tests" misleadingly means "6+" -->
1575 +      <test name="com.google.common.collect.testing.OpenJdk6Tests"/>
1576 +    </junit>
1577 +  </target>
1578  
1579   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines