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.166 by jsr166, Mon Aug 10 06:32:23 2015 UTC vs.
Revision 1.192 by jsr166, Mon Nov 30 00:51:40 2015 UTC

# Line 1 | Line 1
1 < <project name="jsr166" default="usage">
1 > <project name="jsr166" default="usage"
2 >  xmlns:if="ant:if" xmlns:unless="ant:unless">
3  
4    <description>
5   ------------------------------------------------------------------------------
# Line 28 | Line 29
29    Alternatively, define ant variables thus:
30    ant -Djdk$N.home=...
31    for $N in 6 7 8 9 ...
32 +
33 +  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   ------------------------------------------------------------------------------
38    </description>
39  
# Line 38 | Line 44
44      </java>
45    </target>
46  
47 +  <!-- HOWTO printf debug: <echo message="prop=${prop}"/> -->
48  
49    <!-- User-specific settings -->
50    <property file="user.properties"/>
# Line 50 | Line 57
57    <property name="build.deprecation"    value="false"/>
58    <property name="build.javadoc.access" value="protected"/>
59  
53  <!-- Tck options; see JSR166TestCase.java
54   To profile a single tck test class:
55   ant -Djsr166.profileTests=true -Djsr166.profileThreshold=100 -Djsr166.tckTestClass=CompletableFutureTest test-tck
56   To stress test a single tck test class:
57   ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 test-tck
58  -->
59  <property name="jsr166.profileTests"     value="false"/>
60  <property name="jsr166.profileThreshold" value="100"/>
61  <property name="jsr166.runsPerTest"      value="1"/>
62  <property name="jsr166.tckTestClass"     value="JSR166TestCase"/>
63
60    <!-- Build locations -->
61    <property name="build.dir"                   location="build"/>
62    <property name="build.classes.dir"           location="${build.dir}/classes"/>
# Line 93 | Line 89
89      <property name="java@{v}"       location="${jdk@{v}.home}/bin/java"/>
90      <property name="javac@{v}"      location="${jdk@{v}.home}/bin/javac"/>
91      <property name="javadoc@{v}"    location="${jdk@{v}.home}/bin/javadoc"/>
92 <    <property name="jdk@{v}src.dir" location="${jdks.home}/src/jdk@{v}/jdk/src/share/classes"/>
92 >    <local name="have.java.base"/>
93 >    <available property="have.java.base"
94 >      file="${jdks.home}/src/jdk@{v}/jdk/src/java.base/share/classes" type="dir"/>
95 >    <property name="jdk@{v}src.dir" location="${jdks.home}/src/jdk@{v}/jdk/src/java.base/share/classes"
96 >      if:set="have.java.base"/>
97 >    <property name="jdk@{v}src.dir" location="${jdks.home}/src/jdk@{v}/jdk/src/share/classes"
98 >      unless:set="have.java.base"/>
99 >    <local name="modules"/>
100 >    <available property="modules" file="${jdk@{v}.home}/jmods" type="dir"/>
101      <local name="boot.jar.dir"/>
102 <    <property name="boot.jar.dir"   location="${jdk@{v}.home}/jre/lib"/>
103 <    <path id="bootclasspath@{v}">
102 >    <property name="boot.jar.dir"   location="${jdk@{v}.home}/jre/lib" unless:set="modules"/>
103 >    <path id="bootclasspath@{v}" unless:set="modules">
104        <pathelement path="${boot.jar.dir}/resources.jar"/>
105        <pathelement path="${boot.jar.dir}/rt.jar"/>
106        <pathelement path="${boot.jar.dir}/jsse.jar"/>
107        <pathelement path="${boot.jar.dir}/jce.jar"/>
108        <pathelement path="${boot.jar.dir}/charsets.jar"/>
109      </path>
110 <    <property name="bootclasspath@{v}" value="${toString:bootclasspath@{v}}"/>
110 >    <property name="bootclasspath@{v}" value="${toString:bootclasspath@{v}}" unless:set="modules"/>
111      </sequential>
112    </macrodef>
113  
# Line 129 | Line 133
133    <property name="test.src.dir"         location="${basedir}/src/test"/>
134    <property name="loops.src.dir"        location="${basedir}/src/loops"/>
135    <property name="tck.src.dir"          location="${test.src.dir}/tck"/>
136 <  <property name="jtreg.src.dir"        location="${test.src.dir}/jtreg"/>
136 >  <property name="jtreg7.src.dir"       location="${test.src.dir}/jtreg-jdk7"/>
137 >  <property name="jtreg8.src.dir"       location="${test.src.dir}/jtreg"/>
138 >  <property name="jtreg9.src.dir"       location="${test.src.dir}/jtreg"/>
139 >  <property name="jtreg.src.dir"        location="${jtreg9.src.dir}"/>
140    <property name="lib.dir"              location="${basedir}/lib"/>
141    <property name="dist.dir"             location="${basedir}/dist"/>
142    <property name="topsrc.dir"           location="${basedir}/src"/>
# Line 168 | Line 175
175    <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"/>
177    <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 -->
178 >  <!-- 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"/> -->
180    <property name="java9.docroot.url"      value="http://download.java.net/jdk9/docs"/>
181    <!-- Default jdk doc location (latest stable release seems best) -->
# Line 187 | Line 194
194    <taskdef name="jtreg" classname="com.sun.javatest.regtest.Main$$Ant"
195             classpath="${lib.dir}/jtreg.jar" />
196  
197 <  <!-- Test classpath -->
198 <  <path id="test.classpath">
199 <    <pathelement location="${build.testcases.dir}"/>
200 <    <pathelement location="${junit.jar}"/>
201 <  </path>
202 <
197 >  <!-- Tck options; see JSR166TestCase.java
198 >   To profile a single tck test class:
199 >   ant -Djsr166.profileTests=true -Djsr166.profileThreshold=10 -Djsr166.tckTestClass=CompletableFutureTest tck
200 >   To stress test a single tck test class:
201 >   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">
207      <attribute name="tck.src.dir" default="${tck.src.dir}"/>
208      <attribute name="target"/>
# Line 201 | Line 211
211      <attribute name="classes"/>
212      <attribute name="jvmflags" default="-ea -esa -Djsr166.testImplementationDetails=true"/>
213      <element name="javac-elements" optional="true"/>
214 +
215      <sequential>
216  
217 +    <local name="modules"/>
218 +    <condition property="modules">
219 +      <available file="${jdk@{compile-target}.home}/jmods" type="dir"/>
220 +    </condition>
221 +
222      <mkdir dir="@{workdir}/tck-classes"/>
223  
224      <javac srcdir="@{tck.src.dir}"
# Line 220 | Line 236
236  
237        <include name="*.java"/>
238        <compilerarg value="-XDignore.symbol.file=true"/>
239 <      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
240 <      <compilerarg value="-Xbootclasspath/p:@{classes}"/>
239 >      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation,-try"/>
240 >      <compilerarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
241 >      <compilerarg value="-Xoverride:${build.classes.dir}" if:set="modules"/>
242        <compilerarg line="${build.args}"/>
243        <javac-elements/>
244  
# Line 231 | Line 248
248            failonerror="true"
249            jvm="${java@{target}}"
250            fork="true">
251 <        <jvmarg value="-Xbootclasspath/p:@{classes}"/>
251 >        <jvmarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
252 >        <jvmarg value="-Xoverride:${build.classes.dir}" if:set="modules"/>
253          <jvmarg line="@{jvmflags}"/>
254  
255 <        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 test-tck -->
256 <        <syspropertyset id="java.util.concurrent.ForkJoinPool-properties">
255 >        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck -->
256 >        <syspropertyset id="system-properties-used-by-tck">
257            <propertyref prefix="java.util.concurrent.ForkJoinPool"/>
258 +          <propertyref prefix="jsr166."/>
259          </syspropertyset>
260  
242        <sysproperty key="jsr166.profileTests"     value="${jsr166.profileTests}"/>
243        <sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/>
244        <sysproperty key="jsr166.runsPerTest"      value="${jsr166.runsPerTest}"/>
261          <classpath>
262            <pathelement location="${junit.jar}"/>
263            <pathelement location="@{workdir}/tck-classes"/>
# Line 252 | Line 268
268    </macrodef>
269  
270    <!-- Define jtreg test sets for different jdk versions -->
271 <  <fileset dir="${jtreg.src.dir}">
271 >  <fileset dir="${jtreg9.src.dir}">
272      <patternset id="jdk9.jtreg.tests">
273        <include name="**/*.java"/>
274      </patternset>
275    </fileset>
276  
277 <  <fileset dir="${jtreg.src.dir}">
277 >  <fileset dir="${jtreg8.src.dir}">
278      <patternset id="jdk8.jtreg.tests">
279        <include name="**/*.java"/>
280 <      <exclude name="util/Spliterator/SpliteratorCharacteristics.java"/>
280 >      <exclude name="**/SpliteratorCharacteristics.java"/>
281 >      <!-- https://bugs.openjdk.java.net/browse/JDK-6842353 -->
282 >      <exclude name="**/GCDuringIteration.java"/>
283      </patternset>
284    </fileset>
285  
286 <  <fileset dir="${jtreg.src.dir}">
286 >  <fileset dir="${jtreg7.src.dir}">
287      <patternset id="jdk7.jtreg.tests">
288        <include name="**/*.java"/>
271      <exclude name="util/Collection/CollectionDefaults.java"/>
272      <exclude name="util/List/ListDefaults.java"/>
273      <exclude name="util/Spliterator/**/*.java"/>
274      <exclude name="util/concurrent/CompletableFuture/**/*.java"/>
275      <exclude name="util/concurrent/forkjoin/SubmissionTest.java"/>
276      <exclude name="util/concurrent/locks/StampedLock/**/*.java"/>
289      </patternset>
290    </fileset>
291  
292    <macrodef name="run-jtreg-tests">
293 <    <!-- ant -Djtreg.src.dir=src/test/jtreg/util/concurrent/CompletableFuture test-jtreg -->
282 <    <attribute name="jtreg.src.dir" default="${jtreg.src.dir}"/>
293 >    <!-- ant -Djtreg9.src.dir=src/test/jtreg/util/concurrent/CompletableFuture jtreg -->
294      <attribute name="source" default="7"/>
295      <attribute name="target"/>
296      <attribute name="workdir"/>
297      <attribute name="classes"/>
298      <attribute name="jtregflags" default=""/>
299 +
300      <sequential>
301 +
302 +    <!-- ant -Djtreg.verbose=time,fail,error jtreg -->
303 +    <property name="jtreg.verbose" value="nopass,fail,error"/>
304 +
305 +    <local name="modules"/>
306 +    <condition property="modules">
307 +      <available file="${jdk@{target}.home}/jmods" type="dir"/>
308 +    </condition>
309 +
310      <delete dir="@{workdir}/JTwork"   quiet="true"/>
311      <delete dir="@{workdir}/JTreport" quiet="true"/>
312      <mkdir dir="@{workdir}/JTwork/scratch"/>
313      <mkdir dir="@{workdir}/JTreport"/>
314 <    <jtreg dir="@{jtreg.src.dir}"
314 >    <jtreg dir="${jtreg@{target}.src.dir}"
315             jdk="${jdk@{target}.home}"
316             workDir="@{workdir}/JTwork"
317             reportDir="@{workdir}/JTreport">
318        <patternset refid="jdk@{target}.jtreg.tests"/>
319 <      <arg value="-Xbootclasspath/p:@{classes}"/>
319 >      <arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
320 >      <arg value="-Xoverride:${build.classes.dir}" if:set="modules"/>
321        <arg value="-agentvm"/>
322 <      <arg value="-v:nopass,fail"/>
322 >      <arg value="-verbose:${jtreg.verbose}"/>
323        <arg value="-vmoptions:-esa -ea"/>
324        <arg value="-automatic"/>
325        <arg value="-k:!ignore"/>
# Line 328 | Line 350
350            depends="configure-compiler"
351            description="Compiles src/main sources to build dir">
352  
353 <    <mkdir dir="${build.classes.dir}"/>
353 >    <local name="modules"/>
354 >    <condition property="modules">
355 >      <and>
356 >        <available file="${jdk9.home}/jmods" type="dir"/>
357 >        <equals arg1="9" arg2="${build.main.java.version}"/>
358 >      </and>
359 >    </condition>
360 >
361 >    <local name="destdir"/>
362 >    <property name="destdir" value="${build.classes.dir}/java.base" if:set="modules"/>
363 >    <property name="destdir" value="${build.classes.dir}" unless:set="modules"/>
364 >
365 >    <mkdir dir="${destdir}"/>
366  
367      <javac srcdir="${src.dir}"
368 <           destdir="${build.classes.dir}"
368 >           destdir="${destdir}"
369             debug="${build.debug}"
370             debuglevel="${build.debuglevel}"
371             deprecation="${build.deprecation}"
# Line 342 | Line 376
376             fork="true">
377  
378        <include name="**/*.java"/>
379 +      <compilerarg value="-Xmodule:java.base" if:set="modules"/>
380        <compilerarg value="-Xprefer:source"/>
381        <compilerarg value="-XDignore.symbol.file=true"/>
382        <compilerarg value="-Xlint:all"/>
# Line 360 | Line 395
395  
396      <jar destfile="${product.jar}">
397        <fileset dir="${build.classes.dir}"/>
398 +      <manifest>
399 +        <attribute name="Built-By" value="${user.name}"/>
400 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
401 +      </manifest>
402      </jar>
403    </target>
404  
# Line 387 | Line 426
426        <arg line="-Xdocrootparent ${java9.docroot.url}"/>
427        <arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
428        <arg value="-XDignore.symbol.file=true"/>
429 + <!--  TODO     <arg value="-Xmodule:java.base"/> -->
430        <arg value="-tag"/>
431        <arg value="${javadoc.jls.option}"/>
432        <arg value="-tag"/>
# Line 418 | Line 458
458        <exclude name="src/emulation/**"/>
459        <exclude name="**/SyntaxTest.java"/>
460        <exclude name="**/SuperfluousAbstract.java"/>
461 +      <manifest>
462 +        <attribute name="Built-By" value="${user.name}"/>
463 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
464 +      </manifest>
465      </jar>
466    </target>
467  
# Line 449 | Line 493
493      <mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/>
494    </target>
495  
496 <  <target name="tck" depends="test-tck" description="alias for test-tck"/>
453 <  <target name="test-tck"
496 >  <target name="tck"
497            depends="jar"
498            description="Runs tck tests for main directly">
499  
# Line 460 | Line 503
503        classes="${product.jar}"/>
504    </target>
505  
506 <  <target name="test-tck-parallelism-1"
507 <          description="Runs test-tck with given common pool parallelism">
508 <    <antcall target="test-tck">
506 >  <target name="tck-parallelism-1"
507 >          description="Runs tck with given common pool parallelism">
508 >    <antcall target="tck">
509        <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/>
510      </antcall>
511    </target>
512  
513 <  <target name="test-tck-parallelism-0"
514 <          description="Runs test-tck with given common pool parallelism">
515 <    <antcall target="test-tck">
513 >  <target name="tck-parallelism-0"
514 >          description="Runs tck with given common pool parallelism">
515 >    <antcall target="tck">
516        <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/>
517      </antcall>
518    </target>
519  
520 <  <target name="jtreg" depends="test-jtreg" description="alias for test-jtreg"/>
478 <  <target name="test-jtreg"
520 >  <target name="jtreg"
521            depends="jar"
522            description="Runs jtreg tests for main using the jtreg ant task">
523      <run-jtreg-tests
# Line 485 | Line 527
527    </target>
528  
529    <target name="test"
530 <          depends="test-tck, test-tck-parallelism-1, test-jtreg"
530 >          depends="tck, tck-parallelism-1, jtreg"
531            description="Runs tck and jtreg tests for main">
532    </target>
533  
534 +  <target name="jtreg8" description="Runs jtreg tests with jdk8">
535 +
536 +    <antcall target="jtreg">
537 +      <param name="build.main.java.version" value="8"/>
538 +      <param name="build.main.javac" value="${javac8}"/>
539 +    </antcall>
540 +
541 +  </target>
542 +
543    <target name="test89"
544            description="Runs tck and jtreg tests for main for multiple java versions">
545  
# Line 496 | Line 547
547      <antcall target="test">
548        <param name="build.main.java.version" value="8"/>
549        <param name="build.main.javac" value="${javac8}"/>
499      <param name="jtreg.exclude.file" value="${jtreg.src.dir}/jdk9tests"/>
550      </antcall>
551  
552      <antcall target="clean"/>
# Line 510 | Line 560
560  
561  
562    <target name="configure-compiler">
563 +    <fail message="ant version too old">
564 +      <condition>
565 +        <not> <antversion atleast="1.9.1"/> </not>
566 +      </condition>
567 +    </fail>
568  
569      <property name="unchecked.option" value="-Xlint:unchecked"/>
570  
# Line 541 | Line 596
596         debuglevel="${build.debuglevel}"
597        deprecation="${build.deprecation}"
598             source="${build.sourcelevel}"
599 +           target="${build.sourcelevel}"
600               fork="true">
601  
602        <compilerarg line="${build.args}"/>
# Line 573 | Line 629
629  
630        <include name="*.java"/>
631        <compilerarg value="-XDignore.symbol.file=true"/>
632 <      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
632 >      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/>
633        <compilerarg value="-Xbootclasspath/p:${product.jar}"/>
634        <compilerarg line="${build.args}"/>
635  
# Line 596 | Line 652
652             debuglevel="${build.debuglevel}"
653             deprecation="${build.deprecation}"
654             source="6"
655 +           target="6"
656             classpath=""
657             bootclasspath="${bootclasspath6}"
658             includeAntRuntime="false"
# Line 625 | Line 682
682             debuglevel="${build.debuglevel}"
683             deprecation="${build.deprecation}"
684             source="6"
685 +           target="6"
686             classpath=""
687 <           bootclasspath="${bootclasspath7}"
687 >           bootclasspath="${bootclasspath6}"
688             includeAntRuntime="false"
689             includeJavaRuntime="false"
690             executable="${javac8}"
# Line 649 | Line 707
707  
708      <jar destfile="${4jdk7product.jar}">
709        <fileset dir="${build.4jdk7.classes.dir}"/>
710 +      <manifest>
711 +        <attribute name="Built-By" value="${user.name}"/>
712 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
713 +      </manifest>
714      </jar>
715  
716    </target>
717  
718  
719 <  <target name="4jdk7-test-tck"
719 >  <target name="4jdk7-tck"
720            depends="4jdk7jar"
721            description="Runs tck tests for jsr166-4jdk7 directly">
722  
# Line 666 | Line 728
728          <!-- JDK8+ test classes -->
729          <exclude name="*8Test.java"/>
730          <exclude name="*9Test.java"/>
731 +        <exclude name="*10Test.java"/>
732          <exclude name="DoubleAccumulatorTest.java"/>
733          <exclude name="DoubleAdderTest.java"/>
734          <exclude name="LongAccumulatorTest.java"/>
# Line 673 | Line 736
736          <exclude name="CompletableFutureTest.java"/>
737          <exclude name="SplittableRandomTest.java"/>
738          <exclude name="StampedLockTest.java"/>
739 +        <exclude name="SubmissionPublisherTest.java"/>
740        </javac-elements>
741      </run-tck-tests>
742    </target>
743  
744  
745 <  <target name="4jdk7-test-tck-junit"
745 >  <target name="4jdk7-tck-junit"
746            depends="4jdk7compile"
747            description="Runs tck tests for jsr166-4jdk7 via junit task (experimental)">
748  
# Line 706 | Line 770
770      </junit>
771    </target>
772  
773 <  <target name="4jdk7-test-jtreg"
773 >  <target name="4jdk7-jtreg"
774            depends="4jdk7jar"
775            description="Runs jtreg tests for jsr166-4jdk7 using the jtreg ant task">
776      <run-jtreg-tests
# Line 717 | Line 781
781  
782  
783    <target name="4jdk7-test"
784 <          depends="4jdk7-test-tck, 4jdk7-test-jtreg"
784 >          depends="4jdk7-tck, 4jdk7-jtreg"
785            description="Runs tck and jtreg tests for jsr166-4jdk7">
786    </target>
787  
# Line 786 | Line 850
850             classpath=""
851             bootclasspath="${bootclasspath6}"
852             source="5"
853 +           target="5"
854             includeAntRuntime="false"
855             includeJavaRuntime="false"
856             executable="${javac7}"
# Line 807 | Line 872
872  
873      <jar destfile="${jsr166x.jar}">
874        <fileset dir="${build.jsr166x.classes.dir}"/>
875 +      <manifest>
876 +        <attribute name="Built-By" value="${user.name}"/>
877 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
878 +      </manifest>
879      </jar>
880  
881    </target>
# Line 871 | Line 940
940             debuglevel="${build.debuglevel}"
941             deprecation="${build.deprecation}"
942             source="6"
943 +           target="6"
944             classpath=""
945             bootclasspath="${bootclasspath6}"
946             includeAntRuntime="false"
# Line 894 | Line 964
964  
965      <jar destfile="${jsr166y.jar}" index="true">
966        <fileset dir="${build.jsr166y.classes.dir}"/>
967 +      <manifest>
968 +        <attribute name="Built-By" value="${user.name}"/>
969 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
970 +      </manifest>
971      </jar>
972  
973    </target>
# Line 961 | Line 1035
1035             bootclasspath="@{jsr166y.jar}:${bootclasspath6}"
1036             classpath=""
1037             source="6"
1038 +           target="6"
1039             includeAntRuntime="false"
1040             includeJavaRuntime="false"
1041             executable="${javac7}"
# Line 982 | Line 1057
1057  
1058      <jar destfile="${extra166y.jar}" index="true">
1059        <fileset dir="${build.extra166y.classes.dir}"/>
1060 +      <manifest>
1061 +        <attribute name="Built-By" value="${user.name}"/>
1062 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
1063 +      </manifest>
1064      </jar>
1065  
1066    </target>
# Line 1048 | Line 1127
1127             debuglevel="${build.debuglevel}"
1128             deprecation="${build.deprecation}"
1129             source="${build.jsr166e.java.version}"
1130 +           target="${build.jsr166e.java.version}"
1131             classpath=""
1132             includeAntRuntime="false"
1133             includeJavaRuntime="false"
# Line 1074 | Line 1154
1154             debuglevel="${build.debuglevel}"
1155             deprecation="${build.deprecation}"
1156             source="${build.jsr166e.java.version}"
1157 +           target="${build.jsr166e.java.version}"
1158             classpath=""
1159 <           bootclasspath="${bootclasspath7}"
1159 >           bootclasspath="${bootclasspath6}"
1160             includeAntRuntime="false"
1161             includeJavaRuntime="false"
1162             executable="${javac8}"
# Line 1097 | Line 1178
1178  
1179      <jar destfile="${jsr166e.jar}" index="true">
1180        <fileset dir="${build.jsr166e.classes.dir}"/>
1181 +      <manifest>
1182 +        <attribute name="Built-By" value="${user.name}"/>
1183 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
1184 +      </manifest>
1185      </jar>
1186  
1187    </target>
# Line 1122 | Line 1207
1207    </target>
1208  
1209  
1210 <  <target name="jsr166e-test-tck-one-java-version"
1210 >  <target name="jsr166e-tck-one-java-version"
1211            depends="jsr166ejar">
1212  
1213      <echo message="Testing with jdk${build.jsr166e.java.version} ..."/>
# Line 1134 | Line 1219
1219        classes="${jsr166e.jar}"/>
1220    </target>
1221  
1222 <  <target name="jsr166e-test-tck"
1222 >  <target name="jsr166e-tck"
1223            description="Runs tck tests for jsr166e for multiple java versions">
1224  
1225   <!--     <antcall target="clean"/> -->
1226 < <!--     <antcall target="jsr166e-test-tck-one-java-version"> -->
1226 > <!--     <antcall target="jsr166e-tck-one-java-version"> -->
1227   <!--       <param name="build.jsr166e.java.version" value="8"/> -->
1228   <!--       <param name="build.jsr166e.javac" value="${javac8}"/> -->
1229   <!--     </antcall> -->
1230  
1231      <antcall target="clean"/>
1232 <    <antcall target="jsr166e-test-tck-one-java-version">
1232 >    <antcall target="jsr166e-tck-one-java-version">
1233        <param name="build.jsr166e.java.version" value="7"/>
1234        <param name="build.jsr166e.javac" value="${javac7}"/>
1235      </antcall>
1236  
1237      <antcall target="clean"/>
1238 <    <antcall target="jsr166e-test-tck-one-java-version">
1238 >    <antcall target="jsr166e-tck-one-java-version">
1239        <param name="build.jsr166e.java.version" value="6"/>
1240        <param name="build.jsr166e.javac" value="${javac6}"/>
1241      </antcall>
# Line 1158 | Line 1243
1243  
1244  
1245    <target name="jsr166e-test"
1246 <          depends="jsr166e-test-tck"
1246 >          depends="jsr166e-tck"
1247            description="Runs all tests for jsr166e">
1248    </target>
1249  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines