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.156 by jsr166, Wed Jun 25 08:29:01 2014 UTC vs.
Revision 1.170 by jsr166, Wed Sep 2 03:53:43 2015 UTC

# Line 24 | Line 24
24    $HOME/jdk/src/jdk9
25    where each of the above is a complete JDK source tree
26    (e.g. mercurial forest) or a symlink to same.
27 +
28 +  Alternatively, define ant variables thus:
29 +  ant -Djdk$N.home=...
30 +  for $N in 6 7 8 9 ...
31   ------------------------------------------------------------------------------
32    </description>
33  
# Line 47 | Line 51
51    <property name="build.javadoc.access" value="protected"/>
52  
53    <!-- Tck options; see JSR166TestCase.java
54 <   Profiling a tck test class:
54 >   To profile a single tck test class:
55     ant -Djsr166.profileTests=true -Djsr166.profileThreshold=100 -Djsr166.tckTestClass=CompletableFutureTest test-tck
56 <   Stress test a tck test class:
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"/>
58  <!-- Stress test an individual tck test class:
59  ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 test-tck
60  -->
62    <property name="jsr166.tckTestClass"     value="JSR166TestCase"/>
63  
64    <!-- Build locations -->
# Line 166 | Line 167
167    <property name="java5.docroot.url"      value="http://docs.oracle.com/javase/1.5.0/docs"/>
168    <property name="java6.docroot.url"      value="http://docs.oracle.com/javase/6/docs"/>
169    <property name="java7.docroot.url"      value="http://docs.oracle.com/javase/7/docs"/>
170 <  <!-- The expected canonical location does not yet exist as of 2014-02 -->
171 <  <!-- <property name="java8.docroot.url" value="http://docs.oracle.com/javase/8/docs"/> -->
171 <  <property name="java8.docroot.url"      value="http://download.java.net/jdk8/docs"/>
172 <  <!-- No published jdk9 docs exist as of 2014-02 -->
170 >  <property name="java8.docroot.url"      value="http://docs.oracle.com/javase/8/docs"/>
171 >  <!-- The expected canonical location does not yet exist as of 2014-07 -->
172    <!-- <property name="java9.docroot.url" value="http://docs.oracle.com/javase/9/docs"/> -->
173 <  <property name="java9.docroot.url"      value="${java8.docroot.url}"/>
173 >  <property name="java9.docroot.url"      value="http://download.java.net/jdk9/docs"/>
174    <!-- Default jdk doc location (latest stable release seems best) -->
175 <  <property name="java.docroot.url"       value="${java7.docroot.url}"/>
175 >  <property name="java.docroot.url"       value="${java8.docroot.url}"/>
176  
177    <!-- Canonical location of jdk API docs, to use with javadoc link attribute -->
178    <property name="java5.api.url"      value="${java5.docroot.url}/api/"/>
# Line 214 | Line 213
213             source="@{compile-target}"
214             target="@{compile-target}"
215             classpath="${junit.jar}"
217           bootclasspath="@{classes}:${bootclasspath@{compile-target}}"
216             includeAntRuntime="false"
217             includeJavaRuntime="false"
218             executable="${javac@{compile-target}}"
# Line 223 | Line 221
221        <include name="*.java"/>
222        <compilerarg value="-XDignore.symbol.file=true"/>
223        <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
224 +      <compilerarg value="-Xbootclasspath/p:@{classes}"/>
225        <compilerarg line="${build.args}"/>
226        <javac-elements/>
227  
# Line 234 | Line 233
233            fork="true">
234          <jvmarg value="-Xbootclasspath/p:@{classes}"/>
235          <jvmarg line="@{jvmflags}"/>
236 +
237 +        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 test-tck -->
238 +        <syspropertyset id="java.util.concurrent.ForkJoinPool-properties">
239 +          <propertyref prefix="java.util.concurrent.ForkJoinPool"/>
240 +        </syspropertyset>
241 +
242          <sysproperty key="jsr166.profileTests"     value="${jsr166.profileTests}"/>
243          <sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/>
244          <sysproperty key="jsr166.runsPerTest"      value="${jsr166.runsPerTest}"/>
# Line 246 | Line 251
251      </sequential>
252    </macrodef>
253  
254 +  <!-- Define jtreg test sets for different jdk versions -->
255 +  <fileset dir="${jtreg.src.dir}">
256 +    <patternset id="jdk9.jtreg.tests">
257 +      <include name="**/*.java"/>
258 +    </patternset>
259 +  </fileset>
260 +
261 +  <fileset dir="${jtreg.src.dir}">
262 +    <patternset id="jdk8.jtreg.tests">
263 +      <include name="**/*.java"/>
264 +      <exclude name="util/Spliterator/SpliteratorCharacteristics.java"/>
265 +      <!-- https://bugs.openjdk.java.net/browse/JDK-6842353 -->
266 +      <exclude name="util/WeakHashMap/GCDuringIteration.java"/>
267 +    </patternset>
268 +  </fileset>
269 +
270 +  <fileset dir="${jtreg.src.dir}">
271 +    <patternset id="jdk7.jtreg.tests">
272 +      <include name="**/*.java"/>
273 +      <exclude name="util/Collection/CollectionDefaults.java"/>
274 +      <exclude name="util/List/ListDefaults.java"/>
275 +      <exclude name="util/Spliterator/**/*.java"/>
276 +      <exclude name="**/CompletableFuture/**/*.java"/>
277 +      <exclude name="util/concurrent/forkjoin/SubmissionTest.java"/>
278 +      <exclude name="**/StampedLock/**/*.java"/>
279 +      <exclude name="**/AtomicReferenceTest.java"/>
280 +      <exclude name="util/concurrent/atomic/Serial.java"/>
281 +    </patternset>
282 +  </fileset>
283 +
284    <macrodef name="run-jtreg-tests">
285      <!-- ant -Djtreg.src.dir=src/test/jtreg/util/concurrent/CompletableFuture test-jtreg -->
286      <attribute name="jtreg.src.dir" default="${jtreg.src.dir}"/>
# Line 263 | Line 298
298             jdk="${jdk@{target}.home}"
299             workDir="@{workdir}/JTwork"
300             reportDir="@{workdir}/JTreport">
301 <
301 >      <patternset refid="jdk@{target}.jtreg.tests"/>
302        <arg value="-Xbootclasspath/p:@{classes}"/>
303        <arg value="-agentvm"/>
304        <arg value="-v:nopass,fail"/>
# Line 314 | Line 349
349        <compilerarg value="-Xprefer:source"/>
350        <compilerarg value="-XDignore.symbol.file=true"/>
351        <compilerarg value="-Xlint:all"/>
352 +      <compilerarg value="-Werror"/>
353        <compilerarg value="-Xdoclint:all/protected"/>
354        <compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
355        <compilerarg line="${build.args}"/>
# Line 417 | Line 453
453      <mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/>
454    </target>
455  
456 <
456 >  <target name="tck" depends="test-tck" description="alias for test-tck"/>
457    <target name="test-tck"
458            depends="jar"
459            description="Runs tck tests for main directly">
# Line 428 | Line 464
464        classes="${product.jar}"/>
465    </target>
466  
467 +  <target name="test-tck-parallelism-1"
468 +          description="Runs test-tck with given common pool parallelism">
469 +    <antcall target="test-tck">
470 +      <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/>
471 +    </antcall>
472 +  </target>
473 +
474 +  <target name="test-tck-parallelism-0"
475 +          description="Runs test-tck with given common pool parallelism">
476 +    <antcall target="test-tck">
477 +      <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/>
478 +    </antcall>
479 +  </target>
480 +
481 +  <target name="jtreg" depends="test-jtreg" description="alias for test-jtreg"/>
482    <target name="test-jtreg"
483            depends="jar"
484            description="Runs jtreg tests for main using the jtreg ant task">
# Line 438 | Line 489
489    </target>
490  
491    <target name="test"
492 <          depends="test-tck, test-jtreg"
492 >          depends="test-tck, test-tck-parallelism-1, test-jtreg"
493            description="Runs tck and jtreg tests for main">
494    </target>
495  
496 +  <target name="jtreg8" description="Runs jtreg tests with jdk8">
497 +
498 +    <antcall target="jtreg">
499 +      <param name="build.main.java.version" value="8"/>
500 +      <param name="build.main.javac" value="${javac8}"/>
501 +    </antcall>
502 +
503 +  </target>
504 +
505    <target name="test89"
506            description="Runs tck and jtreg tests for main for multiple java versions">
507  
# Line 508 | Line 568
568    </target>
569  
570  
571 +  <target name="compile-test-loops" depends="jar"
572 +          description="compile all the perf tests in src/test/loops">
573 +
574 +    <mkdir dir="${build.dir}/test/loops"/>
575 +
576 +    <javac srcdir="${basedir}/src/test/loops"
577 +           destdir="${build.dir}/test/loops"
578 +           debug="${build.debug}"
579 +           debuglevel="${build.debuglevel}"
580 +           deprecation="${build.deprecation}"
581 +           includeAntRuntime="false"
582 +           includeJavaRuntime="false"
583 +           executable="${javac9}"
584 +           fork="true">
585 +
586 +      <include name="*.java"/>
587 +      <compilerarg value="-XDignore.symbol.file=true"/>
588 +      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/>
589 +      <compilerarg value="-Xbootclasspath/p:${product.jar}"/>
590 +      <compilerarg line="${build.args}"/>
591 +
592 +    </javac>
593 +
594 +  </target>
595 +
596 +
597    <!-- jsr166 4jdk7 -->
598  
599    <target name="4jdk7compile"
# Line 533 | Line 619
619        <compilerarg value="-Xprefer:source"/>
620        <compilerarg value="-XDignore.symbol.file=true"/>
621        <compilerarg value="-Xlint:all"/>
622 +      <compilerarg value="-Werror"/>
623        <compilerarg line="${build.args}"/>
624  
625      </javac>
# Line 637 | Line 724
724      <run-jtreg-tests
725         target="7"
726         workdir="${build.4jdk7.dir}"
727 <       classes="${4jdk7product.jar}"
641 <       jtregflags="-exclude:${jtreg.src.dir}/jdk8tests"/>
727 >       classes="${4jdk7product.jar}"/>
728    </target>
729  
730  
# Line 720 | Line 806
806        <include name="jsr166x/**/*.java"/>
807        <compilerarg value="-XDignore.symbol.file=true"/>
808        <compilerarg value="-Xlint:all,-unchecked,-rawtypes"/>
809 +      <compilerarg value="-Werror"/>
810        <compilerarg line="${build.args}"/>
811  
812      </javac>
# Line 806 | Line 893
893        <include name="jsr166y/**/*.java"/>
894        <compilerarg value="-XDignore.symbol.file=true"/>
895        <compilerarg value="-Xlint:all"/>
896 +      <compilerarg value="-Werror"/>
897        <compilerarg line="${build.args}"/>
898  
899      </javac>
# Line 893 | Line 981
981        <include name="extra166y/**/*.java"/>
982        <compilerarg value="-XDignore.symbol.file=true"/>
983        <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/>
984 +      <compilerarg value="-Werror"/>
985        <compilerarg line="${build.args}"/>
986  
987      </javac>
# Line 980 | Line 1069
1069        <include name="jsr166e/**/*.java"/>
1070        <compilerarg value="-XDignore.symbol.file=true"/>
1071        <compilerarg value="-Xlint:all"/>
1072 +      <compilerarg value="-Werror"/>
1073        <compilerarg line="${build.args}"/>
1074  
1075      </javac>
# Line 1006 | Line 1096
1096        <include name="jsr166e/**/*.java"/>
1097        <compilerarg value="-XDignore.symbol.file=true"/>
1098        <compilerarg value="-Xlint:all"/>
1099 +      <compilerarg value="-Werror"/>
1100        <compilerarg value="-Xdoclint:all/protected"/>
1101  
1102      </javac>
# Line 1109 | Line 1200
1200  
1201    <target name="lint">
1202      <antcall target="dists">
1203 +      <param name="build.javadoc.access" value="public"/>
1204 +    </antcall>
1205 +  </target>
1206 +
1207 + <!-- Generates all doclint warnings, even for private methods (rarely useful) -->
1208 +  <target name="lint-private">
1209 +    <antcall target="dist">
1210        <param name="build.javadoc.access" value="private"/>
1211      </antcall>
1212    </target>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines