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.202 by jsr166, Sat Mar 26 15:10:14 2016 UTC vs.
Revision 1.218 by jsr166, Sat Sep 10 04:06:10 2016 UTC

# Line 38 | Line 38
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 186 | Line 186
186    <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"/>
188    <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 -->
189 >  <!-- 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"/> -->
191 <  <property name="java9.docroot.url"      value="http://download.java.net/jdk9/docs"/>
191 >  <property name="java9.docroot.url"      value="http://download.java.net/java/jdk9/docs"/>
192    <!-- Default jdk doc location (latest stable release seems best) -->
193    <property name="java.docroot.url"       value="${java8.docroot.url}"/>
194  
# 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=${build.classes.dir}/java.base" 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=${build.classes.dir}/java.base" if:set="modules"/>
267          <jvmarg line="@{jvmflags}"/>
268 +        <!-- ant -Dvmoptions="-Xmx8m" -Djsr166.tckTestClass=CompletableFutureTest tck -->
269 +        <jvmarg line="${vmoptions}" if:set="vmoptions"/>
270  
271 <        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck -->
271 >        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck -->
272          <syspropertyset id="system-properties-used-by-tck">
273            <propertyref prefix="java.util.concurrent.ForkJoinPool"/>
274            <propertyref prefix="jsr166."/>
# Line 327 | Line 329
329  
330      <delete dir="@{workdir}/JTwork"   quiet="true"/>
331      <delete dir="@{workdir}/JTreport" quiet="true"/>
330    <mkdir dir="@{workdir}/JTwork/scratch"/>
331    <!-- workaround for https://bugs.openjdk.java.net/browse/CODETOOLS-7901571 -->
332    <mkdir dir="@{workdir}/JTreport/html"/>
333    <mkdir dir="@{workdir}/JTreport/text"/>
332      <jtreg dir="${jtreg@{target}.src.dir}"
333             jdk="${jdk@{target}.home}"
334             workDir="@{workdir}/JTwork"
335             reportDir="@{workdir}/JTreport">
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="-vmoptions:--patch-module java.base=${build.classes.dir}/java.base" if:set="modules"/>
339        <arg value="-agentvm"/>
340        <arg value="-verbose:${jtreg.verbose}"/>
341        <arg value="-vmoptions:-esa -ea"/>
# Line 407 | Line 405
405        <compilerarg line="${build.args}"/>
406  
407      </javac>
410
411    <!-- We need jdk9's Contended annotation, but at compile time only -->
412    <!--
413        <delete file="${destdir}/jdk/internal/vm/annotation/Contended.class"/>
414    -->
408    </target>
409  
410  
411    <target name="jar"
412            depends="compile"
413 <          description="Builds library jar from compiled sources">
414 <
413 >          description="Builds library jar for src/main from compiled sources">
414 >    <local name="subdir"/>
415 >    <available property="subdir" file="${build.classes.dir}/java.base" type="dir" value="/java.base"/>
416      <jar destfile="${product.jar}">
417 <      <fileset dir="${build.classes.dir}"/>
417 >      <fileset dir="${build.classes.dir}${subdir}"/>
418        <manifest>
419          <attribute name="Built-By" value="${user.name}"/>
420          <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
# Line 438 | Line 432
432      <!-- the packagenames="none" hack below prevents scanning the -->
433      <!-- sourcepath for packages -->
434  
435 + <!--  TODO: sourcepath="${src.dir}:${jdk9.src.dir}" -->
436 + <!--  TODO: sourcepath="${src.dir}:${jdk9.src.dir}:${jdk9.src.home}/jdk/src/java.logging/share/classes" -->
437      <javadoc destdir="${docs.dir}"
438               packagenames="none"
439               link="${java9.api.url}"
440               overview="${src.dir}/intro.html"
441               access="${build.javadoc.access}"
442 <             sourcepath="${src.dir}:${jdk9.src.dir}"
442 >             sourcepath="${src.dir}"
443               classpath=""
444               executable="${javadoc9}">
445        <fileset dir="${src.dir}" defaultexcludes="yes">
# Line 452 | Line 448
448        <arg line="-Xdocrootparent ${java9.docroot.url}"/>
449        <arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
450        <arg value="-XDignore.symbol.file=true"/>
451 < <!--  TODO     <arg value="-Xmodule:java.base"/> -->
451 >      <arg value="-Xmodule:java.base"/>
452        <arg value="-tag"/>
453        <arg value="${javadoc.jls.option}"/>
454        <arg value="-tag"/>
# Line 526 | Line 522
522  
523    <target name="tck"
524            depends="jar"
525 <          description="Runs tck tests for main directly">
525 >          description="Runs tck tests for src/main directly">
526  
527      <run-tck-tests
528        target="${build.main.java.version}"
# Line 535 | Line 531
531    </target>
532  
533    <target name="tck-parallelism-1"
534 <          description="Runs tck with given common pool parallelism">
534 >          description="Runs tck with common pool parallelism 1">
535      <antcall target="tck">
536        <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/>
537      </antcall>
538    </target>
539  
540    <target name="tck-parallelism-0"
541 <          description="Runs tck with given common pool parallelism">
541 >          description="Runs tck with common pool parallelism 0">
542      <antcall target="tck">
543        <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/>
544      </antcall>
545    </target>
546  
547 +  <target name="tck-security-manager"
548 +          description="Runs tck with a security manager">
549 +    <antcall target="tck">
550 +      <param name="jsr166.useSecurityManager" value="true"/>
551 +    </antcall>
552 +  </target>
553 +
554    <target name="jtreg"
555            depends="jar"
556 <          description="Runs jtreg tests for main using the jtreg ant task">
556 >          description="Runs jtreg tests for src/main using the jtreg ant task">
557      <run-jtreg-tests
558         target="${build.main.java.version}"
559         workdir="${build.dir}"
# Line 558 | Line 561
561    </target>
562  
563    <target name="test"
564 <          depends="tck, tck-parallelism-1, jtreg"
565 <          description="Runs tck and jtreg tests for main">
564 >          depends="tck, tck-parallelism-1, tck-parallelism-0, jtreg"
565 >          description="Runs tck and jtreg tests for src/main">
566    </target>
567  
568 <  <target name="jtreg8" description="Runs jtreg tests with jdk8">
568 > <!--   <target name="jtreg8" description="Runs jtreg tests with jdk8"> -->
569  
570 <    <antcall target="jtreg">
571 <      <param name="build.main.java.version" value="8"/>
572 <      <param name="build.main.javac" value="${javac8}"/>
573 <    </antcall>
570 > <!--     <antcall target="jtreg"> -->
571 > <!--       <param name="build.main.java.version" value="8"/> -->
572 > <!--       <param name="build.main.javac" value="${javac8}"/> -->
573 > <!--     </antcall> -->
574  
575 <  </target>
575 > <!--   </target> -->
576  
577 <  <target name="test89"
578 <          description="Runs tck and jtreg tests for main for multiple java versions">
577 > <!--   <target name="test89" -->
578 > <!--           description="Runs tck and jtreg tests for src/main for multiple java versions"> -->
579  
580 <    <antcall target="clean"/>
581 <    <antcall target="test">
582 <      <param name="build.main.java.version" value="8"/>
583 <      <param name="build.main.javac" value="${javac8}"/>
584 <    </antcall>
580 > <!--     <antcall target="clean"/> -->
581 > <!--     <antcall target="test"> -->
582 > <!--       <param name="build.main.java.version" value="8"/> -->
583 > <!--       <param name="build.main.javac" value="${javac8}"/> -->
584 > <!--     </antcall> -->
585  
586 <    <antcall target="clean"/>
587 <    <antcall target="test">
588 <      <param name="build.main.java.version" value="9"/>
589 <      <param name="build.main.javac" value="${javac9}"/>
590 <    </antcall>
586 > <!--     <antcall target="clean"/> -->
587 > <!--     <antcall target="test"> -->
588 > <!--       <param name="build.main.java.version" value="9"/> -->
589 > <!--       <param name="build.main.javac" value="${javac9}"/> -->
590 > <!--     </antcall> -->
591  
592 <  </target>
592 > <!--   </target> -->
593  
594  
595  
# Line 616 | Line 619
619    <!-- Various demos and test programs -->
620  
621  
622 <  <target name="loops" depends="configure-compiler"
623 <          description="Benchmark from Doug Lea's AQS paper">
622 >  <!-- description="Benchmark from Doug Lea's AQS paper" -->
623 >  <target name="loops" depends="configure-compiler">
624  
625      <mkdir dir="${build.loops.dir}"/>
626  
# Line 793 | Line 796
796               access="${build.javadoc.access}"
797               sourcepath="${4jdk8src.dir}:${jdk8.src.dir}"
798               classpath=""
799 <             executable="${javadoc8}">
799 >             executable="${javadoc8}"
800 >             failonerror = "true">
801        <fileset dir="${4jdk8src.dir}" defaultexcludes="yes">
802          <include name="**/*.java"/>
803        </fileset>
# Line 941 | Line 945
945    </target>
946  
947  
948 +  <!-- Runs tck tests for jsr166-4jdk7 via junit task (dead experiment) -->
949    <target name="4jdk7-tck-junit"
950 <          depends="4jdk7compile"
946 <          description="Runs tck tests for jsr166-4jdk7 via junit task (experimental)">
950 >          depends="4jdk7compile">
951  
952      <junit printsummary="true"
953             showoutput="true"
# Line 998 | Line 1002
1002               access="${build.javadoc.access}"
1003               sourcepath="${4jdk7src.dir}:${jdk7.src.dir}"
1004               classpath=""
1005 <             executable="${javadoc7}">
1005 >             executable="${javadoc7}"
1006 >             failonerror = "true">
1007        <fileset dir="${4jdk7src.dir}" defaultexcludes="yes">
1008          <include name="**/*.java"/>
1009        </fileset>
# Line 1093 | Line 1098
1098               sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1099               bootclasspath="${bootclasspath6}"
1100               source="5"
1101 <             executable="${javadoc7}">
1101 >             executable="${javadoc7}"
1102 >             failonerror = "true">
1103        <arg line="-Xdocrootparent ${java.docroot.url}"/>
1104        <arg value="-XDignore.symbol.file=true"/>
1105  
# Line 1185 | Line 1191
1191               sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1192               bootclasspath="${bootclasspath6}"
1193               source="6"
1194 <             executable="${javadoc7}">
1194 >             executable="${javadoc7}"
1195 >             failonerror = "true">
1196        <arg line="-Xdocrootparent ${java.docroot.url}"/>
1197        <arg value="-XDignore.symbol.file=true"/>
1198  
# Line 1398 | Line 1405
1405               access="${build.javadoc.access}"
1406               sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1407               source="${build.jsr166e.java.version}"
1408 <             executable="${javadoc7}">
1408 >             executable="${javadoc7}"
1409 >             failonerror = "true">
1410        <arg line="-Xdocrootparent ${java.docroot.url}"/>
1411        <arg value="-XDignore.symbol.file=true"/>
1412  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines