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.210 by jsr166, Mon Apr 18 15:30:49 2016 UTC vs.
Revision 1.227 by jsr166, Sat Dec 17 22:18:25 2016 UTC

# Line 63 | 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"/>
66  <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"/>
# Line 188 | Line 187
187    <property name="java8.docroot.url"      value="http://docs.oracle.com/javase/8/docs"/>
188    <!-- The expected canonical location does not yet exist as of 2016-04 -->
189    <!-- <property name="java9.docroot.url" value="http://docs.oracle.com/javase/9/docs"/> -->
190 <  <property name="java9.docroot.url"      value="http://http://download.java.net/java/jdk9/docs"/>
190 >  <property name="java9.docroot.url"      value="http://download.java.net/java/jdk9/docs"/>
191    <!-- Default jdk doc location (latest stable release seems best) -->
192    <property name="java.docroot.url"       value="${java8.docroot.url}"/>
193  
# Line 245 | Line 244
244             classpath="${junit.jar}"
245             includeAntRuntime="false"
246             includeJavaRuntime="false"
247 +           encoding="ASCII"
248             executable="${javac@{compile-target}}"
249             fork="true">
250  
# Line 252 | Line 252
252        <compilerarg value="-XDignore.symbol.file=true"/>
253        <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation,-try"/>
254        <compilerarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
255 <      <compilerarg value="-Xpatch:${build.classes.dir}" if:set="modules"/>
255 >      <compilerarg line="--patch-module java.base=@{classes}" if:set="modules"/>
256        <compilerarg line="${build.args}"/>
257        <javac-elements/>
258  
# Line 263 | Line 263
263            jvm="${java@{target}}"
264            fork="true">
265          <jvmarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
266 <        <jvmarg value="-Xpatch:${build.classes.dir}" if:set="modules"/>
266 >        <jvmarg line="--patch-module java.base=@{classes}" if:set="modules"/>
267 >        <jvmarg line="--add-opens java.base/java.util=ALL-UNNAMED" if:set="modules"/>
268 >        <jvmarg line="--add-opens java.base/java.util.concurrent=ALL-UNNAMED" if:set="modules"/>
269 >        <jvmarg line="--add-opens java.base/java.util.concurrent.atomic=ALL-UNNAMED" if:set="modules"/>
270 >        <jvmarg line="--add-opens java.base/java.util.concurrent.locks=ALL-UNNAMED" if:set="modules"/>
271          <jvmarg line="@{jvmflags}"/>
272 +        <!-- ant -Dvmoptions="-Xmx8m" -Djsr166.tckTestClass=CompletableFutureTest tck -->
273 +        <jvmarg line="${vmoptions}" if:set="vmoptions"/>
274  
275 <        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck -->
275 >        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck -->
276          <syspropertyset id="system-properties-used-by-tck">
277            <propertyref prefix="java.util.concurrent.ForkJoinPool"/>
278            <propertyref prefix="jsr166."/>
# Line 293 | Line 299
299      <patternset id="jdk8.jtreg.tests">
300        <include name="**/*.java"/>
301        <exclude name="**/SpliteratorCharacteristics.java"/>
296      <!-- https://bugs.openjdk.java.net/browse/JDK-6842353 -->
297      <exclude name="**/GCDuringIteration.java"/>
302      </patternset>
303    </fileset>
304  
# Line 326 | Line 330
330      </condition>
331  
332      <delete dir="@{workdir}/JTwork"   quiet="true"/>
329    <delete dir="@{workdir}/JTreport" quiet="true"/>
333      <jtreg dir="${jtreg@{target}.src.dir}"
334             jdk="${jdk@{target}.home}"
335 <           workDir="@{workdir}/JTwork"
333 <           reportDir="@{workdir}/JTreport">
335 >           workDir="@{workdir}/JTwork">
336        <patternset refid="jdk@{target}.jtreg.tests"/>
337        <arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
338 <      <arg value="-Xpatch:${build.classes.dir}" if:set="modules"/>
338 >      <arg value="-javacoptions:--patch-module java.base=@{classes}" if:set="modules"/>
339 >      <arg value="-vmoptions:--patch-module java.base=@{classes}" if:set="modules"/>
340        <arg value="-agentvm"/>
341 +      <arg value="-noreport"/>
342        <arg value="-verbose:${jtreg.verbose}"/>
343        <arg value="-vmoptions:-esa -ea"/>
344        <arg value="-automatic"/>
# Line 389 | Line 393
393             classpath=""
394             includeAntRuntime="false"
395             includeJavaRuntime="false"
396 +           encoding="ASCII"
397             executable="${build.main.javac}"
398             fork="true">
399  
# Line 409 | Line 414
414    <target name="jar"
415            depends="compile"
416            description="Builds library jar for src/main from compiled sources">
417 <
417 >    <local name="subdir"/>
418 >    <available property="subdir" file="${build.classes.dir}/java.base" type="dir" value="/java.base"/>
419      <jar destfile="${product.jar}">
420 <      <fileset dir="${build.classes.dir}"/>
420 >      <fileset dir="${build.classes.dir}${subdir}"/>
421        <manifest>
422          <attribute name="Built-By" value="${user.name}"/>
423          <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
# Line 429 | Line 435
435      <!-- the packagenames="none" hack below prevents scanning the -->
436      <!-- sourcepath for packages -->
437  
438 + <!-- TODO: sourcepath="${src.dir}:${jdk9.src.dir}" -->
439 + <!-- TODO: sourcepath="${src.dir}:${jdk9.src.dir}:${jdk9.src.home}/jdk/src/java.logging/share/classes" -->
440 + <!-- TODO: sourcepath="${src.dir}:${jdk9.home}/src.zip" -->
441 + <!-- TODO: <arg line="-sourcepath ${src.dir}:${jdk9.home}/src.zip"/> -->
442 + <!-- TODO: <arg line="- -module-source-path ${jdk9.home}/src.zip"/> -->
443      <javadoc destdir="${docs.dir}"
444               packagenames="none"
445               link="${java9.api.url}"
446               overview="${src.dir}/intro.html"
447               access="${build.javadoc.access}"
448 <             sourcepath="${src.dir}:${jdk9.src.dir}"
448 >             sourcepath="${src.dir}"
449               classpath=""
450               executable="${javadoc9}">
451        <fileset dir="${src.dir}" defaultexcludes="yes">
# Line 443 | Line 454
454        <arg line="-Xdocrootparent ${java9.docroot.url}"/>
455        <arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
456        <arg value="-XDignore.symbol.file=true"/>
457 < <!--  TODO     <arg value="-Xmodule:java.base"/> -->
457 >      <arg value="-Xmodule:java.base"/>
458        <arg value="-tag"/>
459        <arg value="${javadoc.jls.option}"/>
460 + <!-- @apiNote currently unused -->
461 + <!--       <arg value="-tag"/> -->
462 + <!--       <arg value="apiNote:a:API Note:"/> -->
463        <arg value="-tag"/>
464 <      <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/>
451 <      <arg value="-tag"/>
452 <      <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
453 <      <arg value="-tag"/>
454 <      <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
455 < <!-- tags added in jdk9 -->
456 <      <arg value="-tag"/>
457 <      <arg value="revised:X"/>
464 >      <arg value="implSpec:a:Implementation Requirements:"/>
465        <arg value="-tag"/>
466 <      <arg value="spec:X"/>
466 >      <arg value="implNote:a:Implementation Note:"/>
467 > <!-- tags added in jdk9: currently unused -->
468 > <!--       <arg value="-tag"/> -->
469 > <!--       <arg value="revised:X"/> -->
470 > <!--       <arg value="-tag"/> -->
471 > <!--       <arg value="spec:X"/> -->
472      </javadoc>
473    </target>
474  
# Line 539 | Line 551
551      </antcall>
552    </target>
553  
554 +  <target name="tck-security-manager"
555 +          description="Runs tck with a security manager">
556 +    <antcall target="tck">
557 +      <param name="jsr166.useSecurityManager" value="true"/>
558 +    </antcall>
559 +  </target>
560 +
561    <target name="jtreg"
562            depends="jar"
563            description="Runs jtreg tests for src/main using the jtreg ant task">
# Line 619 | Line 638
638        deprecation="${build.deprecation}"
639             source="${build.sourcelevel}"
640             target="${build.sourcelevel}"
641 +         encoding="ASCII"
642               fork="true">
643  
644        <compilerarg line="${build.args}"/>
# Line 646 | Line 666
666             deprecation="${build.deprecation}"
667             includeAntRuntime="false"
668             includeJavaRuntime="false"
669 +           encoding="ASCII"
670             executable="${javac9}"
671             fork="true">
672  
# Line 679 | Line 700
700             bootclasspath="${bootclasspath8}"
701             includeAntRuntime="false"
702             includeJavaRuntime="false"
703 +           encoding="ASCII"
704             executable="${javac8}"
705             fork="true">
706  
# Line 709 | Line 731
731             bootclasspath="${bootclasspath8}"
732             includeAntRuntime="false"
733             includeJavaRuntime="false"
734 +           encoding="ASCII"
735             executable="${javac8}"
736             fork="true">
737  
# Line 793 | Line 816
816        <arg value="-XDignore.symbol.file=true"/>
817        <arg value="-tag"/>
818        <arg value="${javadoc.jls.option}"/>
819 <      <arg value="-tag"/>
820 <      <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/>
819 > <!-- @apiNote currently unused -->
820 > <!--       <arg value="-tag"/> -->
821 > <!--       <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/> -->
822        <arg value="-tag"/>
823        <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
824        <arg value="-tag"/>
# Line 848 | Line 872
872             bootclasspath="${bootclasspath6}"
873             includeAntRuntime="false"
874             includeJavaRuntime="false"
875 +           encoding="ASCII"
876             executable="${javac7}"
877             fork="true">
878  
# Line 878 | Line 903
903             bootclasspath="${bootclasspath6}"
904             includeAntRuntime="false"
905             includeJavaRuntime="false"
906 +           encoding="ASCII"
907             executable="${javac8}"
908             fork="true">
909  
# Line 1045 | Line 1071
1071             target="5"
1072             includeAntRuntime="false"
1073             includeJavaRuntime="false"
1074 +           encoding="ASCII"
1075             executable="${javac7}"
1076             fork="true">
1077  
# Line 1138 | Line 1165
1165             bootclasspath="${bootclasspath6}"
1166             includeAntRuntime="false"
1167             includeJavaRuntime="false"
1168 +           encoding="ASCII"
1169             executable="${javac7}"
1170             fork="true">
1171  
# Line 1232 | Line 1260
1260             target="6"
1261             includeAntRuntime="false"
1262             includeJavaRuntime="false"
1263 +           encoding="ASCII"
1264             executable="${javac7}"
1265             fork="true">
1266  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines