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.182 by jsr166, Sun Sep 13 17:46:07 2015 UTC vs.
Revision 1.194 by jsr166, Wed Dec 16 02:29:06 2015 UTC

# Line 57 | Line 57
57    <property name="build.deprecation"    value="false"/>
58    <property name="build.javadoc.access" value="protected"/>
59  
60  <!-- Tck options; see JSR166TestCase.java
61   To profile a single tck test class:
62   ant -Djsr166.profileTests=true -Djsr166.profileThreshold=10 -Djsr166.tckTestClass=CompletableFutureTest tck
63   To stress test a single tck test class:
64   ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 tck
65  -->
66  <property name="jsr166.profileTests"     value="false"/>
67  <property name="jsr166.profileThreshold" value="100"/>
68  <property name="jsr166.runsPerTest"      value="1"/>
69  <property name="jsr166.tckTestClass"     value="JSR166TestCase"/>
70
60    <!-- Build locations -->
61    <property name="build.dir"                   location="build"/>
62    <property name="build.classes.dir"           location="${build.dir}/classes"/>
# Line 186 | 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 205 | 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 244 | Line 236
236  
237        <include name="*.java"/>
238        <compilerarg value="-XDignore.symbol.file=true"/>
239 <      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
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}"/>
# Line 261 | Line 253
253          <jvmarg line="@{jvmflags}"/>
254  
255          <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck -->
256 <        <syspropertyset id="java.util.concurrent.ForkJoinPool-properties">
256 >        <syspropertyset id="system-properties-used-by-tck">
257            <propertyref prefix="java.util.concurrent.ForkJoinPool"/>
258 +          <propertyref prefix="jsr166."/>
259          </syspropertyset>
260  
268        <sysproperty key="jsr166.profileTests"     value="${jsr166.profileTests}"/>
269        <sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/>
270        <sysproperty key="jsr166.runsPerTest"      value="${jsr166.runsPerTest}"/>
261          <classpath>
262            <pathelement location="${junit.jar}"/>
263            <pathelement location="@{workdir}/tck-classes"/>
# Line 309 | Line 299
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"/>
# Line 317 | Line 310
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"/>
313 >    <!-- workaround for https://bugs.openjdk.java.net/browse/CODETOOLS-7901571 -->
314 >    <mkdir dir="@{workdir}/JTreport/html"/>
315 >    <mkdir dir="@{workdir}/JTreport/text"/>
316      <jtreg dir="${jtreg@{target}.src.dir}"
317             jdk="${jdk@{target}.home}"
318             workDir="@{workdir}/JTwork"
# Line 326 | Line 321
321        <arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
322        <arg value="-Xoverride:${build.classes.dir}" if:set="modules"/>
323        <arg value="-agentvm"/>
324 <      <arg value="-v:nopass,fail"/>
324 >      <arg value="-verbose:${jtreg.verbose}"/>
325        <arg value="-vmoptions:-esa -ea"/>
326        <arg value="-automatic"/>
327        <arg value="-k:!ignore"/>
# Line 393 | Line 388
388        <compilerarg line="${build.args}"/>
389  
390      </javac>
391 +
392 +    <!-- We need jdk9's Contended annotation, but at compile time only -->
393 +    <delete file="${destdir}/jdk/internal/vm/annotation/Contended.class"/>
394    </target>
395  
396  
# Line 603 | Line 601
601         debuglevel="${build.debuglevel}"
602        deprecation="${build.deprecation}"
603             source="${build.sourcelevel}"
604 +           target="${build.sourcelevel}"
605               fork="true">
606  
607        <compilerarg line="${build.args}"/>
# Line 658 | Line 657
657             debuglevel="${build.debuglevel}"
658             deprecation="${build.deprecation}"
659             source="6"
660 +           target="6"
661             classpath=""
662             bootclasspath="${bootclasspath6}"
663             includeAntRuntime="false"
# Line 687 | Line 687
687             debuglevel="${build.debuglevel}"
688             deprecation="${build.deprecation}"
689             source="6"
690 +           target="6"
691             classpath=""
692 <           bootclasspath="${bootclasspath7}"
692 >           bootclasspath="${bootclasspath6}"
693             includeAntRuntime="false"
694             includeJavaRuntime="false"
695             executable="${javac8}"
# Line 854 | Line 855
855             classpath=""
856             bootclasspath="${bootclasspath6}"
857             source="5"
858 +           target="5"
859             includeAntRuntime="false"
860             includeJavaRuntime="false"
861             executable="${javac7}"
# Line 943 | Line 945
945             debuglevel="${build.debuglevel}"
946             deprecation="${build.deprecation}"
947             source="6"
948 +           target="6"
949             classpath=""
950             bootclasspath="${bootclasspath6}"
951             includeAntRuntime="false"
# Line 1037 | Line 1040
1040             bootclasspath="@{jsr166y.jar}:${bootclasspath6}"
1041             classpath=""
1042             source="6"
1043 +           target="6"
1044             includeAntRuntime="false"
1045             includeJavaRuntime="false"
1046             executable="${javac7}"
# Line 1128 | Line 1132
1132             debuglevel="${build.debuglevel}"
1133             deprecation="${build.deprecation}"
1134             source="${build.jsr166e.java.version}"
1135 +           target="${build.jsr166e.java.version}"
1136             classpath=""
1137             includeAntRuntime="false"
1138             includeJavaRuntime="false"
# Line 1154 | Line 1159
1159             debuglevel="${build.debuglevel}"
1160             deprecation="${build.deprecation}"
1161             source="${build.jsr166e.java.version}"
1162 +           target="${build.jsr166e.java.version}"
1163             classpath=""
1164 <           bootclasspath="${bootclasspath7}"
1164 >           bootclasspath="${bootclasspath6}"
1165             includeAntRuntime="false"
1166             includeJavaRuntime="false"
1167             executable="${javac8}"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines