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.118 by jsr166, Mon Jan 21 01:05:01 2013 UTC vs.
Revision 1.148 by jsr166, Sat Jul 20 18:26:16 2013 UTC

# Line 22 | Line 22
22    $HOME/jdk/src/jdk8
23    where each of the above is a complete JDK source tree
24    (e.g. mercurial forest) or a symlink to same.
25 + As of 2013-02, the very latest lambda 8 jdk is needed for jdk8.
26   ------------------------------------------------------------------------------
27    </description>
28  
29 <  <target name="usage" description="Advises user to run with -projecthelp">
30 <    <echo>Run "ant -projecthelp" for full usage information.</echo>
29 >  <!-- Display main targets by running 'ant -projecthelp' -->
30 >  <target name="usage">
31 >    <java classname="org.apache.tools.ant.Main">
32 >      <arg value="-projecthelp" />
33 >    </java>
34    </target>
35  
36  
# Line 39 | Line 43
43    <property name="build.debug"          value="true"/>
44    <property name="build.debuglevel"     value="source,lines,vars"/>
45    <property name="build.deprecation"    value="false"/>
46 +  <property name="build.javadoc.access" value="protected"/>
47 +
48 +  <!-- Tck options; see JSR166TestCase.java -->
49 +  <!-- ant -Djsr166.profileTests=true -Djsr166.runsPerTest=100 test-tck -->
50 +  <property name="jsr166.profileTests"     value="false"/>
51 +  <property name="jsr166.profileThreshold" value="100"/>
52 +  <property name="jsr166.runsPerTest"      value="1"/>
53 +  <!-- Allow running an individual tck test class -->
54 +  <!-- ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 test-tck -->
55 +  <property name="jsr166.tckTestClass"     value="JSR166TestCase"/>
56  
57    <!-- Build locations -->
58    <property name="build.dir"                   location="build"/>
# Line 57 | Line 71
71    <property name="build.jsr166e.dir"           location="${build.dir}/jsr166e"/>
72    <property name="build.extra166y.dir"         location="${build.dir}/extra166y"/>
73  
74 <  <property name="build.jsr166x.classes.dir"    location="${build.jsr166x.dir}/classes"/>
75 <  <property name="build.jsr166y.classes.dir"    location="${build.jsr166y.dir}/classes"/>
76 <  <property name="build.jsr166e.classes.dir"    location="${build.jsr166e.dir}/classes"/>
77 <  <property name="build.extra166y.classes.dir"  location="${build.extra166y.dir}/classes"/>
74 >  <property name="build.jsr166x.classes.dir"   location="${build.jsr166x.dir}/classes"/>
75 >  <property name="build.jsr166y.classes.dir"   location="${build.jsr166y.dir}/classes"/>
76 >  <property name="build.jsr166e.classes.dir"   location="${build.jsr166e.dir}/classes"/>
77 >  <property name="build.extra166y.classes.dir" location="${build.extra166y.dir}/classes"/>
78  
79    <!-- JDK locations -->
80    <property name="jdks.home"  location="${user.home}/jdk"/>
# Line 86 | Line 100
100      </sequential>
101    </macrodef>
102  
103 +  <macrodef name="mirror-dir">
104 +    <attribute name="src"/>
105 +    <attribute name="dst"/>
106 +    <sequential>
107 +    <delete dir="@{dst}"/>
108 +    <mkdir dir="@{dst}"/>
109 +    <copy todir="@{dst}" preservelastmodified="true">
110 +      <fileset dir="@{src}"/>
111 +    </copy>
112 +    </sequential>
113 +  </macrodef>
114 +
115    <defjdklocations v="6"/>
116    <defjdklocations v="7"/>
117    <defjdklocations v="8"/>
# Line 105 | Line 131
131    <property name="jsr166esrc.dir"       location="${topsrc.dir}/jsr166e"/>
132    <property name="extra166ysrc.dir"     location="${topsrc.dir}/extra166y"/>
133  
134 <  <!-- Distribution locations -->
135 <  <property name="dist.javadocs.dir"          location="${dist.dir}/jsr166.docs"/>
136 <  <property name="dist.4jdk7.docs.dir"        location="${dist.dir}/jsr166-4jdk7.docs"/>
137 <  <property name="dist.jsr166xjavadocs.dir"   location="${dist.dir}/jsr166x.docs"/>
138 <  <property name="dist.jsr166yjavadocs.dir"   location="${dist.dir}/jsr166y.docs"/>
139 <  <property name="dist.jsr166ejavadocs.dir"   location="${dist.dir}/jsr166e.docs"/>
140 <  <property name="dist.extra166yjavadocs.dir" location="${dist.dir}/extra166y.docs"/>
134 >  <!-- Javadoc locations -->
135 >  <property name="docs.dir"          location="${build.dir}/docs"/>
136 >  <property name="4jdk7docs.dir"     location="${build.4jdk7.dir}/docs"/>
137 >  <property name="jsr166xdocs.dir"   location="${build.jsr166x.dir}/docs"/>
138 >  <property name="jsr166ydocs.dir"   location="${build.jsr166y.dir}/docs"/>
139 >  <property name="jsr166edocs.dir"   location="${build.jsr166e.dir}/docs"/>
140 >  <property name="extra166ydocs.dir" location="${build.extra166y.dir}/docs"/>
141 >
142 >  <property name="dist.docs.dir"          location="${dist.dir}/docs"/>
143 >  <property name="dist.4jdk7docs.dir"     location="${dist.dir}/jsr166-4jdk7docs"/>
144 >  <property name="dist.jsr166xdocs.dir"   location="${dist.dir}/jsr166xdocs"/>
145 >  <property name="dist.jsr166ydocs.dir"   location="${dist.dir}/jsr166ydocs"/>
146 >  <property name="dist.jsr166edocs.dir"   location="${dist.dir}/jsr166edocs"/>
147 >  <property name="dist.extra166ydocs.dir" location="${dist.dir}/extra166ydocs"/>
148  
149    <!-- Jar locations -->
150    <property name="product.jar"      location="${build.dir}/jsr166.jar"/>
# Line 128 | Line 161
161    <property name="jdkapi7docs.url"      value="http://docs.oracle.com/javase/7/docs/api/"/>
162  
163    <property name="jdkapi8docs.url"      value="http://download.java.net/jdk8/docs/api/"/>
164 <  <!-- The below does not yet exist as of 2012-11 -->
164 >  <!-- The below does not yet exist as of 2013-01 -->
165    <!-- <property name="jdkapi8docs.url" value="http://docs.oracle.com/javase/8/docs/api/"/> -->
166  
167    <!-- Default jdk api doc location (latest stable release seems best) -->
# Line 146 | Line 179
179    </path>
180  
181    <macrodef name="run-tck-tests">
182 +    <attribute name="tck.src.dir" default="${tck.src.dir}"/>
183      <attribute name="target"/>
184 +    <attribute name="compile-target" default="@{target}"/>
185      <attribute name="workdir"/>
186 <    <attribute name="product.jar" default="${product.jar}"/>
186 >    <attribute name="classes"/>
187      <attribute name="jvmflags" default=""/>
188 +    <element name="javac-elements" optional="true"/>
189      <sequential>
190  
191      <mkdir dir="@{workdir}/tck-classes"/>
192  
193 <    <javac srcdir="${tck.src.dir}"
193 >    <javac srcdir="@{tck.src.dir}"
194             destdir="@{workdir}/tck-classes"
195             debug="${build.debug}"
196             debuglevel="${build.debuglevel}"
197             deprecation="${build.deprecation}"
198 <           source="6"
198 >           source="@{compile-target}"
199 >           target="@{compile-target}"
200             classpath="${junit.jar}"
201 +           bootclasspath="@{classes}:${bootclasspath@{compile-target}}"
202             includeAntRuntime="false"
203             includeJavaRuntime="false"
204 <           executable="${javac@{target}}"
204 >           executable="${javac@{compile-target}}"
205             fork="true">
206  
207 <      <include name="**/*.java"/>
170 <      <bootclasspath path="@{product.jar}"/>
171 <      <bootclasspath path="${bootclasspath6}"/>
207 >      <include name="*.java"/>
208        <compilerarg value="-XDignore.symbol.file=true"/>
209        <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
210        <compilerarg line="${build.args}"/>
211 +      <javac-elements/>
212  
213      </javac>
214  
215 <    <java classname="JSR166TestCase"
215 >    <java classname="${jsr166.tckTestClass}"
216            failonerror="true"
217            jvm="${java@{target}}"
218            fork="true">
219 <        <jvmarg value="-Xbootclasspath/p:@{product.jar}"/>
219 >        <jvmarg value="-Xbootclasspath/p:@{classes}"/>
220          <jvmarg line="@{jvmflags}"/>
221 +        <sysproperty key="jsr166.profileTests"     value="${jsr166.profileTests}"/>
222 +        <sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/>
223 +        <sysproperty key="jsr166.runsPerTest"      value="${jsr166.runsPerTest}"/>
224          <classpath>
225            <pathelement location="${junit.jar}"/>
226            <pathelement location="@{workdir}/tck-classes"/>
# Line 190 | Line 230
230      </sequential>
231    </macrodef>
232  
233 +  <macrodef name="run-jtreg-tests">
234 +    <attribute name="jtreg.src.dir" default="${jtreg.src.dir}"/>
235 +    <attribute name="source" default="7"/>
236 +    <attribute name="target"/>
237 +    <attribute name="workdir"/>
238 +    <attribute name="classes"/>
239 +    <attribute name="jtregflags" default=""/>
240 +    <sequential>
241 +    <delete dir="@{workdir}/JTwork"   quiet="true"/>
242 +    <delete dir="@{workdir}/JTreport" quiet="true"/>
243 +    <mkdir dir="@{workdir}/JTwork/scratch"/>
244 +    <mkdir dir="@{workdir}/JTreport"/>
245 +    <jtreg dir="@{jtreg.src.dir}"
246 +           jdk="${jdk@{target}.home}"
247 +           workDir="@{workdir}/JTwork"
248 +           reportDir="@{workdir}/JTreport">
249 +
250 +      <arg value="-Xbootclasspath/p:@{classes}"/>
251 +      <arg value="-agentvm"/>
252 +      <arg value="-v:nopass,fail"/>
253 +      <arg value="-vmoptions:-esa -ea"/>
254 +      <arg value="-automatic"/>
255 +      <arg value="-k:!ignore"/>
256 +      <arg line="@{jtregflags}"/>
257 +    </jtreg>
258 +    </sequential>
259 +  </macrodef>
260 +
261    <!-- ALoops classpath -->
262    <path id="loops.classpath">
263      <pathelement location="${build.loops.dir}"/>
264    </path>
265  
266    <!-- Support @jls tag, used in jdk8+ javadoc -->
267 <  <!-- TODO: How do we get &trade to work? -->
200 <  <!-- TODO: Why isn't @jls a "standard" tag? -->
201 <  <!--   property name="javadoc.jls.cite" value="The Java&trade; Language Specification" -->
202 <  <property name="javadoc.jls.cite" value="The Java Language Specification"/>
267 >  <property name="javadoc.jls.cite" value="The Java&amp;trade; Language Specification"/>
268    <property name="javadoc.jls.option" value="jls:a:See &lt;cite&gt;${javadoc.jls.cite}&lt;/cite&gt;:"/>
269  
270    <!-- Main targets -->
# Line 226 | Line 291
291             fork="true">
292  
293        <include name="**/*.java"/>
294 +      <compilerarg value="-Xprefer:source"/>
295        <compilerarg value="-XDignore.symbol.file=true"/>
296        <compilerarg value="-Xlint:all"/>
297 +      <compilerarg value="-Xdoclint:all/protected"/>
298 +      <compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
299        <compilerarg line="${build.args}"/>
300  
301      </javac>
# Line 244 | Line 312
312    </target>
313  
314  
247  <target name="test"
248          depends="configure-tests, report-tests"
249          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
250
251
315    <target name="docs"
316            description="Builds javadocs for src/main to dist dir">
317  
318 <    <delete dir="${dist.javadocs.dir}"/>
319 <    <mkdir dir="${dist.javadocs.dir}"/>
318 >    <delete dir="${docs.dir}"/>
319 >    <mkdir dir="${docs.dir}"/>
320  
321      <!-- the packagenames="none" hack below prevents scanning the -->
322      <!-- sourcepath for packages -->
323  
324 <    <javadoc destdir="${dist.javadocs.dir}"
324 >    <javadoc destdir="${docs.dir}"
325               packagenames="none"
326               link="${jdkapi8docs.url}"
327               overview="${src.dir}/intro.html"
328 +             access="${build.javadoc.access}"
329 +             sourcepath="${src.dir}:${jdk8src.dir}"
330               classpath=""
331               executable="${javadoc8}">
267      <sourcepath path="${src.dir}"/>
268      <sourcepath path="${jdk8src.dir}"/>
269      <arg value="-XDignore.symbol.file=true"/>
270      <arg value="-tag"/>
271      <arg value="${javadoc.jls.option}"/>
332        <fileset dir="${src.dir}" defaultexcludes="yes">
333          <include name="**/*.java"/>
334        </fileset>
335 +      <arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
336 +      <arg value="-XDignore.symbol.file=true"/>
337 +      <arg value="-tag"/>
338 +      <arg value="${javadoc.jls.option}"/>
339 +      <arg value="-tag"/>
340 +      <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/>
341 +      <arg value="-tag"/>
342 +      <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
343 +      <arg value="-tag"/>
344 +      <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
345      </javadoc>
346    </target>
347  
348  
349    <target name="dist"
350 <          depends="dist-clean, dist-jar, docs"
350 >          depends="dist-clean, dist-jar, dist-docs"
351            description="Puts all distributable products in single hierarchy"/>
352  
353  
# Line 310 | Line 380
380    <target name="dist-clean"
381            description="Removes all build and distribution products">
382  
383 +    <delete dir="${build.dir}"/>
384      <delete dir="${dist.dir}"/>
385  
386    </target>
387  
388  
318  <!-- Internal targets -->
319
320
389    <target name="dist-jar"
390            depends="clean, jar">
323
391      <copy file="${product.jar}" todir="${dist.dir}"/>
325
392    </target>
393  
394 <
395 <  <target name="compile-tests"
396 <          depends="jar">
331 <
332 <    <mkdir dir="${build.testcases.dir}"/>
333 <
334 <    <javac srcdir="${tck.src.dir}"
335 <           destdir="${build.testcases.dir}"
336 <           debug="${build.debug}"
337 <           debuglevel="${build.debuglevel}"
338 <           deprecation="${build.deprecation}"
339 <           source="6"
340 <           classpath="${junit.jar}"
341 <           includeAntRuntime="false"
342 <           includeJavaRuntime="false"
343 <           executable="${javac8}"
344 <           fork="true">
345 <
346 <      <include name="**/*.java"/>
347 <      <bootclasspath path="@{product.jar}"/>
348 <      <bootclasspath path="${bootclasspath6}"/>
349 <      <compilerarg value="-XDignore.symbol.file=true"/>
350 <      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
351 <      <compilerarg line="${build.args}"/>
352 <
353 <    </javac>
354 <
355 <    <javac srcdir="${test.src.dir}"
356 <           destdir="${build.testcases.dir}"
357 <           debug="${build.debug}"
358 <           debuglevel="${build.debuglevel}"
359 <           deprecation="${build.deprecation}"
360 <           source="6"
361 <           classpath=""
362 <           includeAntRuntime="false"
363 <           includeJavaRuntime="false"
364 <           executable="${javac8}"
365 <           fork="true">
366 <
367 <      <include name="jsr166/test/**/*.java"/>
368 <      <bootclasspath path="${product.jar}"/>
369 <      <bootclasspath path="${bootclasspath6}"/>
370 <      <compilerarg value="-XDignore.symbol.file=true"/>
371 <      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
372 <      <compilerarg line="${build.args}"/>
373 <
374 <    </javac>
375 <
376 < <!--
377 <    <javac srcdir="${jtreg.src.dir}"
378 <          destdir="${build.testcases.dir}"
379 <            debug="${build.debug}"
380 <       debuglevel="${build.debuglevel}"
381 <      deprecation="${build.deprecation}"
382 <           source="${build.sourcelevel}"
383 <             fork="true">
384 <
385 <      <compilerarg value="-Xbootclasspath/p:${product.jar}"/>
386 <      <compilerarg value="-XDignore.symbol.file=true"/>
387 <      <compilerarg line="${build.args}"/>
388 <
389 <    </javac>
390 < -->
391 <
394 >  <target name="dist-docs"
395 >          depends="clean, docs">
396 >    <mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/>
397    </target>
398  
399  
400 <  <target name="run-tests"
401 <          depends="compile-tests">
402 <
398 <    <!-- May be overridden by user.properties -->
399 <    <property name="testcase" value="*"/>
400 <
401 <    <mkdir dir="${build.reports.dir}"/>
402 <
403 <    <junit printsummary="true"
404 <             showoutput="true"
405 <          errorProperty="junit.failed"
406 <        failureProperty="junit.failed"
407 <                    dir="${build.reports.dir}"
408 <                    jvm="${java8}"
409 <                   fork="true">
410 <
411 <      <jvmarg value="-Xbootclasspath/p:${product.jar}"/>
412 <      <jvmarg value="-server"/>
413 <      <jvmarg value="-showversion"/>
414 <
415 <      <classpath refid="test.classpath"/>
416 <
417 <      <formatter type="xml"/>
418 <
419 <      <batchtest todir="${build.reports.dir}" unless="no.test.tck">
420 <        <fileset dir="${tck.src.dir}">
421 <          <include name="**/${testcase}Test.java"/>
422 <        </fileset>
423 <      </batchtest>
424 <
425 <      <batchtest todir="${build.reports.dir}" if="do.test.old">
426 <        <fileset dir="${test.src.dir}">
427 <          <include name="jsr166/test/**/${testcase}Test.java"/>
428 <        </fileset>
429 <      </batchtest>
430 <
431 < <!--
432 <      <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
433 <        <fileset dir="${jtreg.src.dir}">
434 <          <include name="**/${testcase}Test.java"/>
435 <        </fileset>
436 <      </batchtest>
437 < -->
438 <
439 <    </junit>
400 >  <target name="test-tck"
401 >          depends="jar"
402 >          description="Runs tck tests for main directly">
403  
404 +    <run-tck-tests
405 +      target="8"
406 +      workdir="${build.dir}"
407 +      classes="${product.jar}"/>
408    </target>
409  
410 +  <target name="test-jtreg"
411 +          depends="jar"
412 +          description="Runs jtreg tests for main using the jtreg ant task">
413 +    <run-jtreg-tests
414 +       target="8"
415 +       workdir="${build.dir}"
416 +       classes="${product.jar}"/>
417 +  </target>
418  
419 <  <target name="report-tests"
420 <          depends="run-tests">
421 <
447 <    <!-- Sets junit.report.format to frames if redirection is present,
448 <         otherwise sets it to noframes. -->
449 <    <available property="junit.report.format"
450 <                  value="frames"
451 <              classname="org.apache.xalan.lib.Redirect"
452 <    />
453 <    <property name="junit.report.format" value="noframes"/>
454 <
455 <    <junitreport todir="${build.reports.dir}">
456 <      <fileset dir="${build.reports.dir}">
457 <        <include name="TEST-*.xml"/>
458 <      </fileset>
459 <      <report format="${junit.report.format}" todir="${build.reports.dir}"
460 <      />
461 <    </junitreport>
462 <
463 <    <fail message="Test Cases Failed" if="junit.failed"/>
464 <
419 >  <target name="test"
420 >          depends="test-tck, test-jtreg"
421 >          description="Runs tck and jtreg tests for main">
422    </target>
423  
424  
425 +
426    <target name="configure-compiler">
427  
428      <property name="unchecked.option" value="-Xlint:unchecked"/>
# Line 482 | Line 440
440    </target>
441  
442  
485  <target name="configure-tests"
486       depends="configure-compiler">
487
488    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
489    <available property="junit.available"
490               classname="junit.framework.Protectable"/>
491
492    <!-- Xalan -->
493    <available property="xalan.available"
494               classname="org.apache.xalan.Version"/>
495
496
497    <!-- Ant 1.6beta and later don't need or want this check -->
498    <!--
499    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
500          unless="junit.available"/>
501
502    <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
503          unless="xalan.available"/>
504    -->
505
506  </target>
507
443  
444    <!-- Various demos and test programs -->
445  
# Line 550 | Line 485
485             deprecation="${build.deprecation}"
486             source="6"
487             classpath=""
488 +           bootclasspath="${bootclasspath6}"
489             includeAntRuntime="false"
490             includeJavaRuntime="false"
491             executable="${javac7}"
492             fork="true">
493  
494        <include name="**/*.java"/>
495 <      <bootclasspath path="${bootclasspath6}"/>
495 >      <compilerarg value="-Xprefer:source"/>
496        <compilerarg value="-XDignore.symbol.file=true"/>
497        <compilerarg value="-Xlint:all"/>
498        <compilerarg line="${build.args}"/>
# Line 565 | Line 501
501    </target>
502  
503  
504 <  <target name="4jdk7-jar"
504 >  <target name="4jdk7jar"
505            depends="4jdk7compile"
506            description="Builds library jar from compiled sources">
507  
# Line 577 | Line 513
513  
514  
515    <target name="4jdk7-test-tck"
516 <          depends="4jdk7-jar"
516 >          depends="4jdk7jar"
517            description="Runs tck tests for jsr166-4jdk7 directly">
518  
519      <run-tck-tests
520        target="7"
521        workdir="${build.4jdk7.dir}"
522 <      product.jar="${4jdk7product.jar}"/>
522 >      classes="${4jdk7product.jar}">
523 >      <javac-elements>
524 >        <!-- JDK8+ test classes -->
525 >        <exclude name="*8Test.java"/>
526 >        <exclude name="DoubleAccumulatorTest.java"/>
527 >        <exclude name="DoubleAdderTest.java"/>
528 >        <exclude name="LongAccumulatorTest.java"/>
529 >        <exclude name="LongAdderTest.java"/>
530 >        <exclude name="CompletableFutureTest.java"/>
531 >        <exclude name="SplittableRandomTest.java"/>
532 >        <exclude name="StampedLockTest.java"/>
533 >      </javac-elements>
534 >    </run-tck-tests>
535    </target>
536  
537  
# Line 609 | Line 557
557  
558        <formatter type="brief"/>
559  
560 <      <test name="JSR166TestCase" haltonfailure="no">
560 >      <test name="${jsr166.tckTestClass}" haltonfailure="no">
561        </test>
562  
563      </junit>
564    </target>
565  
566    <target name="4jdk7-test-jtreg"
567 <          depends="4jdk7compile"
567 >          depends="4jdk7jar"
568            description="Runs jtreg tests for jsr166-4jdk7 using the jtreg ant task">
569 <    <delete dir="${build.4jdk7.dir}/JTwork"   quiet="true"/>
570 <    <delete dir="${build.4jdk7.dir}/JTreport" quiet="true"/>
571 <    <mkdir dir="${build.4jdk7.dir}/JTwork/scratch"/>
572 <    <mkdir dir="${build.4jdk7.dir}/JTreport"/>
573 <    <jtreg dir="${jtreg.src.dir}"
626 <           jdk="${jdk7.home}"
627 <           workDir="${build.4jdk7.dir}/JTwork"
628 <           reportDir="${build.4jdk7.dir}/JTreport">
629 <
630 <      <arg value="-Xbootclasspath/p:${4jdk7product.jar}"/>
631 <      <arg value="-agentvm"/>
632 <      <arg value="-v:nopass,fail"/>
633 <      <arg value="-vmoptions:-esa -ea"/>
634 <      <arg value="-automatic"/>
635 <      <arg value="-k:!ignore"/>
636 <    </jtreg>
569 >    <run-jtreg-tests
570 >       target="7"
571 >       workdir="${build.4jdk7.dir}"
572 >       classes="${4jdk7product.jar}"
573 >       jtregflags="-exclude:${jtreg.src.dir}/jdk8tests"/>
574    </target>
575  
576  
# Line 646 | Line 583
583    <target name="4jdk7docs"
584            description="Builds javadocs for src/jdk7 to dist dir">
585  
586 <    <delete dir="${dist.4jdk7.docs.dir}"/>
587 <    <mkdir dir="${dist.4jdk7.docs.dir}"/>
586 >    <delete dir="${4jdk7docs.dir}"/>
587 >    <mkdir dir="${4jdk7docs.dir}"/>
588  
589 <    <javadoc destdir="${dist.4jdk7.docs.dir}"
589 >    <javadoc destdir="${4jdk7docs.dir}"
590               packagenames="none"
591               link="${jdkapi7docs.url}"
592               overview="${4jdk7src.dir}/intro.html"
593 +             access="${build.javadoc.access}"
594 +             sourcepath="${4jdk7src.dir}:${jdk7src.dir}"
595               classpath=""
596               executable="${javadoc7}">
658      <sourcepath path="${4jdk7src.dir}"/>
659      <sourcepath path="${jdk7src.dir}"/>
660      <arg value="-XDignore.symbol.file=true"/>
597        <fileset dir="${4jdk7src.dir}" defaultexcludes="yes">
598          <include name="**/*.java"/>
599        </fileset>
600 +      <arg value="-XDignore.symbol.file=true"/>
601      </javadoc>
602    </target>
603  
604  
605    <target name="4jdk7dist"
606 <          depends="4jdk7dist-clean, 4jdk7dist-jar, 4jdk7docs"
606 >          depends="4jdk7dist-jar, 4jdk7dist-docs"
607            description="Puts all distributable products in single hierarchy"/>
608  
609  
# Line 678 | Line 615
615    </target>
616  
617  
681  <target name="4jdk7dist-clean"
682          description="Removes all build and distribution products">
683
684  </target>
685
618    <target name="4jdk7dist-jar"
619 <          depends="4jdk7clean, 4jdk7-jar">
688 <
619 >          depends="4jdk7clean, 4jdk7jar">
620      <copy file="${4jdk7product.jar}" todir="${dist.dir}"/>
621 +  </target>
622 +
623  
624 +  <target name="4jdk7dist-docs"
625 +          depends="4jdk7clean, 4jdk7docs">
626 +    <mirror-dir src="${4jdk7docs.dir}" dst="${dist.4jdk7docs.dir}"/>
627    </target>
628  
629  
# Line 705 | Line 641
641             debuglevel="${build.debuglevel}"
642             deprecation="${build.deprecation}"
643             classpath=""
644 +           bootclasspath="${bootclasspath6}"
645             source="5"
646             includeAntRuntime="false"
647             includeJavaRuntime="false"
# Line 712 | Line 649
649             fork="true">
650  
651        <include name="jsr166x/**/*.java"/>
715      <bootclasspath path="${bootclasspath6}"/>
652        <compilerarg value="-XDignore.symbol.file=true"/>
653        <compilerarg value="-Xlint:all,-unchecked,-rawtypes"/>
654        <compilerarg line="${build.args}"/>
# Line 721 | Line 657
657    </target>
658  
659  
660 <  <target name="jsr166x-jar"
660 >  <target name="jsr166xjar"
661            depends="jsr166xcompile"
662            description="Builds library jar from compiled sources">
663  
# Line 735 | Line 671
671    <target name="jsr166xdocs"
672            description="Builds javadocs to dist dir">
673  
674 <    <delete dir="${dist.jsr166xjavadocs.dir}"/>
675 <    <mkdir dir="${dist.jsr166xjavadocs.dir}"/>
674 >    <delete dir="${jsr166xdocs.dir}"/>
675 >    <mkdir dir="${jsr166xdocs.dir}"/>
676  
677 <    <javadoc destdir="${dist.jsr166xjavadocs.dir}"
677 >    <javadoc destdir="${jsr166xdocs.dir}"
678               packagenames="jsr166x.*"
679               link="${jdkapidocs.url}"
680 +             access="${build.javadoc.access}"
681 +             sourcepath="${topsrc.dir}:${jdk6src.dir}"
682 +             bootclasspath="${bootclasspath6}"
683               source="5"
684               executable="${javadoc7}">
746      <sourcepath path="${topsrc.dir}"/>
747      <sourcepath path="${jdk6src.dir}"/>
748      <bootclasspath path="${bootclasspath6}"/>
685        <arg value="-XDignore.symbol.file=true"/>
686  
687      </javadoc>
# Line 753 | Line 689
689  
690  
691    <target name="jsr166xdist"
692 <          depends="jsr166xdist-clean, jsr166xdist-jar, jsr166xdocs"
692 >          depends="jsr166xdist-jar, jsr166xdist-docs"
693            description="Puts all distributable products in single hierarchy"/>
694  
695  
# Line 765 | Line 701
701    </target>
702  
703  
768  <target name="jsr166xdist-clean"
769          description="Removes all build and distribution products">
770
771  </target>
772
773
704    <target name="jsr166xdist-jar"
705 <          depends="jsr166xclean, jsr166x-jar">
776 <
705 >          depends="jsr166xclean, jsr166xjar">
706      <copy file="${jsr166x.jar}" todir="${dist.dir}"/>
707 +  </target>
708  
709 +  <target name="jsr166xdist-docs"
710 +          depends="jsr166xclean, jsr166xdocs">
711 +    <mirror-dir src="${jsr166xdocs.dir}" dst="${dist.jsr166xdocs.dir}"/>
712    </target>
713  
714    <!-- jsr166y -->
# Line 794 | Line 727
727             deprecation="${build.deprecation}"
728             source="6"
729             classpath=""
730 +           bootclasspath="${bootclasspath6}"
731             includeAntRuntime="false"
732             includeJavaRuntime="false"
733             executable="${javac7}"
734             fork="true">
735  
736        <include name="jsr166y/**/*.java"/>
803      <bootclasspath path="${bootclasspath6}"/>
737        <compilerarg value="-XDignore.symbol.file=true"/>
738        <compilerarg value="-Xlint:all"/>
739        <compilerarg line="${build.args}"/>
# Line 809 | Line 742
742    </target>
743  
744  
745 <  <target name="jsr166y-jar"
745 >  <target name="jsr166yjar"
746            depends="jsr166ycompile"
747            description="Builds library jar from compiled sources">
748  
# Line 823 | Line 756
756    <target name="jsr166ydocs"
757            description="Builds javadocs to dist dir">
758  
759 <    <delete dir="${dist.jsr166yjavadocs.dir}"/>
760 <    <mkdir dir="${dist.jsr166yjavadocs.dir}"/>
759 >    <delete dir="${jsr166ydocs.dir}"/>
760 >    <mkdir dir="${jsr166ydocs.dir}"/>
761  
762 <    <javadoc destdir="${dist.jsr166yjavadocs.dir}"
762 >    <javadoc destdir="${jsr166ydocs.dir}"
763               packagenames="jsr166y.*"
764               link="${jdkapidocs.url}"
765 +             access="${build.javadoc.access}"
766 +             sourcepath="${topsrc.dir}:${jdk6src.dir}"
767 +             bootclasspath="${bootclasspath6}"
768               source="6"
769               executable="${javadoc7}">
834      <sourcepath path="${topsrc.dir}"/>
835      <sourcepath path="${jdk6src.dir}"/>
836      <bootclasspath path="${bootclasspath6}"/>
770        <arg value="-XDignore.symbol.file=true"/>
771  
772      </javadoc>
# Line 841 | Line 774
774  
775  
776    <target name="jsr166ydist"
777 <          depends="jsr166ydist-clean, jsr166ydist-jar, jsr166ydocs"
777 >          depends="jsr166ydist-jar, jsr166ydist-docs"
778            description="Puts all distributable products in single hierarchy"/>
779  
780  
# Line 853 | Line 786
786    </target>
787  
788  
856  <target name="jsr166ydist-clean"
857          description="Removes all build and distribution products">
858
859  </target>
860
789    <target name="jsr166ydist-jar"
790 <          depends="jsr166yclean, jsr166y-jar">
863 <
790 >          depends="jsr166yclean, jsr166yjar">
791      <copy file="${jsr166y.jar}" todir="${dist.dir}"/>
792 +  </target>
793  
794 +  <target name="jsr166ydist-docs"
795 +          depends="jsr166yclean, jsr166ydocs">
796 +    <mirror-dir src="${jsr166ydocs.dir}" dst="${dist.jsr166ydocs.dir}"/>
797    </target>
798  
799  
# Line 870 | Line 801
801  
802  
803    <target name="extra166ycompile"
804 <          depends="configure-compiler, jsr166y-jar"
804 >          depends="configure-compiler, jsr166yjar"
805            description="Compiles extra166y sources">
806  
807      <mkdir dir="${build.extra166y.classes.dir}"/>
# Line 880 | Line 811
811             debug="${build.debug}"
812             debuglevel="${build.debuglevel}"
813             deprecation="${build.deprecation}"
814 +           bootclasspath="@{jsr166y.jar}:${bootclasspath6}"
815             classpath=""
816             source="6"
817             includeAntRuntime="false"
# Line 888 | Line 820
820             fork="true">
821  
822        <include name="extra166y/**/*.java"/>
891      <bootclasspath path="${jsr166y.jar}"/>
892      <bootclasspath path="${bootclasspath6}"/>
823        <compilerarg value="-XDignore.symbol.file=true"/>
824        <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/>
825        <compilerarg line="${build.args}"/>
# Line 898 | Line 828
828    </target>
829  
830  
831 <  <target name="extra166y-jar"
831 >  <target name="extra166yjar"
832            depends="extra166ycompile"
833            description="Builds library jar from compiled sources">
834  
# Line 912 | Line 842
842    <target name="extra166ydocs"
843            description="Builds javadocs to build dir">
844  
845 <    <delete dir="${dist.extra166yjavadocs.dir}"/>
846 <    <mkdir dir="${dist.extra166yjavadocs.dir}"/>
845 >    <delete dir="${extra166ydocs.dir}"/>
846 >    <mkdir dir="${extra166ydocs.dir}"/>
847  
848 <    <javadoc destdir="${dist.extra166yjavadocs.dir}"
848 >    <javadoc destdir="${extra166ydocs.dir}"
849               packagenames="extra166y.*"
850               link="${jdkapidocs.url}"
851 +             access="${build.javadoc.access}"
852 +             sourcepath="${topsrc.dir}:${jdk6src.dir}"
853 +             bootclasspath="${bootclasspath6}"
854               source="6"
855               executable="${javadoc7}">
923      <sourcepath path="${topsrc.dir}"/>
924      <sourcepath path="${jdk6src.dir}"/>
925      <bootclasspath path="${bootclasspath6}"/>
856        <arg value="-XDignore.symbol.file=true"/>
857  
858      </javadoc>
# Line 930 | Line 860
860  
861  
862    <target name="extra166ydist"
863 <          depends="extra166ydist-clean, extra166ydist-jar, extra166ydocs"
863 >          depends="extra166ydist-jar, extra166ydist-docs"
864            description="Puts all distributable products in single hierarchy"/>
865  
866  
# Line 942 | Line 872
872    </target>
873  
874  
945  <target name="extra166ydist-clean"
946          description="Removes all build and distribution products">
947
948  </target>
949
875    <target name="extra166ydist-jar"
876 <          depends="extra166yclean, extra166y-jar">
952 <
876 >          depends="extra166yclean, extra166yjar">
877      <copy file="${extra166y.jar}" todir="${dist.dir}"/>
878 +  </target>
879  
880 +  <target name="extra166ydist-docs"
881 +          depends="extra166yclean, extra166ydocs">
882 +    <mirror-dir src="${extra166ydocs.dir}" dst="${dist.extra166ydocs.dir}"/>
883    </target>
884  
885    <!-- jsr166e -->
886  
887 +  <property name="build.jsr166e.java.version" value="6"/>
888 +  <property name="build.jsr166e.javac" value="${javac6}"/>
889 +
890    <target name="jsr166ecompile"
891            depends="configure-compiler"
892            description="Compiles jsr166e sources">
# Line 967 | Line 898
898             debug="${build.debug}"
899             debuglevel="${build.debuglevel}"
900             deprecation="${build.deprecation}"
901 <           source="7"
901 >           source="${build.jsr166e.java.version}"
902             classpath=""
903             includeAntRuntime="false"
904             includeJavaRuntime="false"
905 <           executable="${javac7}"
905 >           executable="${build.jsr166e.javac}"
906             fork="true">
907  
908        <include name="jsr166e/**/*.java"/>
# Line 983 | Line 914
914    </target>
915  
916  
917 <  <target name="jsr166e-jar"
917 >  <target name="jsr166ejar"
918            depends="jsr166ecompile"
919            description="Builds library jar from compiled sources">
920  
# Line 997 | Line 928
928    <target name="jsr166edocs"
929            description="Builds javadocs to build dir">
930  
931 <    <delete dir="${dist.jsr166ejavadocs.dir}"/>
932 <    <mkdir dir="${dist.jsr166ejavadocs.dir}"/>
931 >    <delete dir="${jsr166edocs.dir}"/>
932 >    <mkdir dir="${jsr166edocs.dir}"/>
933  
934 <    <javadoc destdir="${dist.jsr166ejavadocs.dir}"
934 >    <javadoc destdir="${jsr166edocs.dir}"
935               packagenames="jsr166e.*"
936               link="${jdkapidocs.url}"
937 <             source="7"
937 >             access="${build.javadoc.access}"
938 >             sourcepath="${topsrc.dir}:${jdk6src.dir}"
939 >             source="${build.jsr166e.java.version}"
940               executable="${javadoc7}">
1008      <sourcepath path="${topsrc.dir}"/>
1009      <sourcepath path="${jdk7src.dir}"/>
941        <arg value="-XDignore.symbol.file=true"/>
942  
943      </javadoc>
944    </target>
945  
946  
947 +  <target name="jsr166e-test-tck-one-java-version"
948 +          depends="jsr166ejar">
949 +
950 +    <echo message="Testing with jdk${build.jsr166e.java.version} ..."/>
951 +
952 +    <run-tck-tests
953 +      tck.src.dir="${test.src.dir}/tck-jsr166e"
954 +      target="${build.jsr166e.java.version}"
955 +      workdir="${build.jsr166e.dir}"
956 +      classes="${jsr166e.jar}"/>
957 +  </target>
958 +
959 +  <target name="jsr166e-test-tck"
960 +          description="Runs tck tests for jsr166e for multiple java versions">
961 +
962 + <!--     <antcall target="clean"/> -->
963 + <!--     <antcall target="jsr166e-test-tck-one-java-version"> -->
964 + <!--       <param name="build.jsr166e.java.version" value="8"/> -->
965 + <!--       <param name="build.jsr166e.javac" value="${javac8}"/> -->
966 + <!--     </antcall> -->
967 +
968 +    <antcall target="clean"/>
969 +    <antcall target="jsr166e-test-tck-one-java-version">
970 +      <param name="build.jsr166e.java.version" value="7"/>
971 +      <param name="build.jsr166e.javac" value="${javac7}"/>
972 +    </antcall>
973 +
974 +    <antcall target="clean"/>
975 +    <antcall target="jsr166e-test-tck-one-java-version">
976 +      <param name="build.jsr166e.java.version" value="6"/>
977 +      <param name="build.jsr166e.javac" value="${javac6}"/>
978 +    </antcall>
979 +  </target>
980 +
981 +
982 +  <target name="jsr166e-test"
983 +          depends="jsr166e-test-tck"
984 +          description="Runs all tests for jsr166e">
985 +  </target>
986 +
987    <target name="jsr166edist"
988 <          depends="jsr166edist-clean, jsr166edist-jar, jsr166edocs"
988 >          depends="jsr166edist-jar, jsr166edist-docs"
989            description="Puts all distributable products in single hierarchy"/>
990  
991  
992    <target name="jsr166eclean"
993            description="Removes all jsr166e build products">
1023
994      <delete dir="${build.jsr166e.dir}"/>
1025
995    </target>
996  
997  
998 <  <target name="jsr166edist-clean"
999 <          description="Removes all build and distribution products">
998 >  <target name="jsr166edist-jar"
999 >          depends="jsr166eclean, jsr166ejar">
1000 >    <copy file="${jsr166e.jar}" todir="${dist.dir}"/>
1001 >  </target>
1002  
1003 +  <target name="jsr166edist-docs"
1004 +          depends="jsr166eclean, jsr166edocs">
1005 +    <mirror-dir src="${jsr166edocs.dir}" dst="${dist.jsr166edocs.dir}"/>
1006    </target>
1007  
1034  <target name="jsr166edist-jar"
1035          depends="jsr166eclean, jsr166e-jar">
1008  
1009 <    <copy file="${jsr166e.jar}" todir="${dist.dir}"/>
1009 > <!-- Find buglets that can be detected by static build tools -->
1010  
1011 +  <target name="lint">
1012 +    <antcall target="dists">
1013 +      <param name="build.javadoc.access" value="private"/>
1014 +    </antcall>
1015    </target>
1016  
1017 +
1018   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines