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.198 by jsr166, Thu Mar 24 20:44:47 2016 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"/>
241 >      <compilerarg value="-Xpatch:${build.classes.dir}" if:set="modules"/>
242        <compilerarg line="${build.args}"/>
243        <javac-elements/>
244  
# Line 257 | Line 249
249            jvm="${java@{target}}"
250            fork="true">
251          <jvmarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
252 <        <jvmarg value="-Xoverride:${build.classes.dir}" if:set="modules"/>
252 >        <jvmarg value="-Xpatch:${build.classes.dir}" if:set="modules"/>
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 +          <propertyref name="test.timeout.factor"/>
260          </syspropertyset>
261  
268        <sysproperty key="jsr166.profileTests"     value="${jsr166.profileTests}"/>
269        <sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/>
270        <sysproperty key="jsr166.runsPerTest"      value="${jsr166.runsPerTest}"/>
262          <classpath>
263            <pathelement location="${junit.jar}"/>
264            <pathelement location="@{workdir}/tck-classes"/>
# Line 299 | Line 290
290      </patternset>
291    </fileset>
292  
293 +  <!-- ant -Djtreg.flags=-timeoutFactor:4 -->
294 +  <property name="jtreg.flags" value=""/>
295 +
296    <macrodef name="run-jtreg-tests">
297      <!-- ant -Djtreg9.src.dir=src/test/jtreg/util/concurrent/CompletableFuture jtreg -->
298      <attribute name="source" default="7"/>
# Line 309 | Line 303
303  
304      <sequential>
305  
306 +    <!-- ant -Djtreg.verbose=time,fail,error jtreg -->
307 +    <property name="jtreg.verbose" value="nopass,fail,error"/>
308 +
309      <local name="modules"/>
310      <condition property="modules">
311        <available file="${jdk@{target}.home}/jmods" type="dir"/>
# Line 317 | Line 314
314      <delete dir="@{workdir}/JTwork"   quiet="true"/>
315      <delete dir="@{workdir}/JTreport" quiet="true"/>
316      <mkdir dir="@{workdir}/JTwork/scratch"/>
317 <    <mkdir dir="@{workdir}/JTreport"/>
317 >    <!-- workaround for https://bugs.openjdk.java.net/browse/CODETOOLS-7901571 -->
318 >    <mkdir dir="@{workdir}/JTreport/html"/>
319 >    <mkdir dir="@{workdir}/JTreport/text"/>
320      <jtreg dir="${jtreg@{target}.src.dir}"
321             jdk="${jdk@{target}.home}"
322             workDir="@{workdir}/JTwork"
323             reportDir="@{workdir}/JTreport">
324        <patternset refid="jdk@{target}.jtreg.tests"/>
325        <arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
326 <      <arg value="-Xoverride:${build.classes.dir}" if:set="modules"/>
326 >      <arg value="-Xpatch:${build.classes.dir}" if:set="modules"/>
327        <arg value="-agentvm"/>
328 <      <arg value="-v:nopass,fail"/>
328 >      <arg value="-verbose:${jtreg.verbose}"/>
329        <arg value="-vmoptions:-esa -ea"/>
330        <arg value="-automatic"/>
331        <arg value="-k:!ignore"/>
332        <arg line="@{jtregflags}"/>
333 +      <arg line="${jtreg.flags}"/>
334      </jtreg>
335      </sequential>
336    </macrodef>
# Line 393 | Line 393
393        <compilerarg line="${build.args}"/>
394  
395      </javac>
396 +
397 +    <!-- We need jdk9's Contended annotation, but at compile time only -->
398 +    <delete file="${destdir}/jdk/internal/vm/annotation/Contended.class"/>
399    </target>
400  
401  
# Line 442 | Line 445
445        <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
446        <arg value="-tag"/>
447        <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
448 + <!-- tags added in jdk9 -->
449 +      <arg value="-tag"/>
450 +      <arg value="revised:X"/>
451 +      <arg value="-tag"/>
452 +      <arg value="spec:X"/>
453      </javadoc>
454    </target>
455  
# Line 603 | Line 611
611         debuglevel="${build.debuglevel}"
612        deprecation="${build.deprecation}"
613             source="${build.sourcelevel}"
614 +           target="${build.sourcelevel}"
615               fork="true">
616  
617        <compilerarg line="${build.args}"/>
# Line 658 | Line 667
667             debuglevel="${build.debuglevel}"
668             deprecation="${build.deprecation}"
669             source="6"
670 +           target="6"
671             classpath=""
672             bootclasspath="${bootclasspath6}"
673             includeAntRuntime="false"
# Line 687 | Line 697
697             debuglevel="${build.debuglevel}"
698             deprecation="${build.deprecation}"
699             source="6"
700 +           target="6"
701             classpath=""
702 <           bootclasspath="${bootclasspath7}"
702 >           bootclasspath="${bootclasspath6}"
703             includeAntRuntime="false"
704             includeJavaRuntime="false"
705             executable="${javac8}"
# Line 854 | Line 865
865             classpath=""
866             bootclasspath="${bootclasspath6}"
867             source="5"
868 +           target="5"
869             includeAntRuntime="false"
870             includeJavaRuntime="false"
871             executable="${javac7}"
# Line 943 | Line 955
955             debuglevel="${build.debuglevel}"
956             deprecation="${build.deprecation}"
957             source="6"
958 +           target="6"
959             classpath=""
960             bootclasspath="${bootclasspath6}"
961             includeAntRuntime="false"
# Line 1037 | Line 1050
1050             bootclasspath="@{jsr166y.jar}:${bootclasspath6}"
1051             classpath=""
1052             source="6"
1053 +           target="6"
1054             includeAntRuntime="false"
1055             includeJavaRuntime="false"
1056             executable="${javac7}"
# Line 1128 | Line 1142
1142             debuglevel="${build.debuglevel}"
1143             deprecation="${build.deprecation}"
1144             source="${build.jsr166e.java.version}"
1145 +           target="${build.jsr166e.java.version}"
1146             classpath=""
1147             includeAntRuntime="false"
1148             includeJavaRuntime="false"
# Line 1154 | Line 1169
1169             debuglevel="${build.debuglevel}"
1170             deprecation="${build.deprecation}"
1171             source="${build.jsr166e.java.version}"
1172 +           target="${build.jsr166e.java.version}"
1173             classpath=""
1174 <           bootclasspath="${bootclasspath7}"
1174 >           bootclasspath="${bootclasspath6}"
1175             includeAntRuntime="false"
1176             includeJavaRuntime="false"
1177             executable="${javac8}"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines