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.26 by dl, Tue May 27 16:21:52 2003 UTC vs.
Revision 1.70 by dl, Wed Aug 11 10:57:33 2004 UTC

# Line 1 | Line 1
1   <project name="jsr166" default="usage">
2  
3    <description>
4 <    Build file for JSR-166
4 > ------------------------------------------------------------------------------
5 >  Build file for JSR-166
6  
7 <    JUnit 1.8 must be in ${ant.home}/lib for the test target to work.
7 <  </description>
7 >  Usage: ant [target]
8  
9 +  User-specific settings are read from user.properties.
10 +  See user.properties.sample for an explanation of some useful settings.
11 + ------------------------------------------------------------------------------
12 +  </description>
13  
14 <  <target name="usage" description="Prints this message">
15 <    <echo>
12 < ant [target], where target is one of:
13 <
14 < usage       (default) Prints this message
15 < compile     Compiles all sources to build folder
16 < jar         Builds library jar from compiled sources
17 < test        Runs all tests (requires JUnit 1.8 in ${ant.home}/lib)
18 < docs        Builds javadocs with custom tags to build folder
19 < dist-docs   Builds javadocs without custom tags to dist folder
20 < dist        Puts all distributable products in single hierarchy
21 <
22 < clean       Removes all build products
23 < dist-clean  Removes all build and distribution products
24 <
25 < checkstyle  Reports on style errors in Java source (verbose, mostly chaff)
26 < doccheck    Reports on javadoc style errors (not working yet)
27 <    </echo>
14 >  <target name="usage" description="Advises user to run with -projecthelp">
15 >    <echo>Run "ant -projecthelp" for full usage information.</echo>
16    </target>
17  
18 +
19 +  <!-- User-specific settings -->
20    <property file="user.properties"/>
21 <  <property name="testcase" value="*"/>
21 >
22  
23    <!-- Compilation options -->
24    <property name="build.sourcelevel"    value="1.5"/>
35  <property name="build.docsourcelevel" value="1.4"/>
25    <property name="build.debug"          value="true"/>
26    <property name="build.debuglevel"     value="source,lines,vars"/>
27    <property name="build.deprecation"    value="false"/>
39  <!--
40  <property name="build.warnings"       value="true"/>
41  -->
28  
29    <!-- Build locations -->
30    <property name="build.dir"            location="build"/>
31    <property name="build.classes.dir"    location="${build.dir}/classes"/>
32    <property name="build.testcases.dir"  location="${build.dir}/testcases"/>
33 +  <property name="build.j1.dir"         location="${build.dir}/j1"/>
34 +  <property name="build.loops.dir"      location="${build.dir}/loops"/>
35    <property name="build.lib.dir"        location="${build.dir}/lib"/>
36    <property name="build.ant.dir"        location="${build.dir}/ant"/>
37    <property name="build.javadocs.dir"   location="${build.dir}/javadocs"/>
50  <property name="build.stripped.dir"   location="${build.dir}/stripped"/>
38    <property name="build.reports.dir"    location="${build.dir}/reports"/>
39 +  <property name="build.checkstyle.dir" location="${build.dir}/checkstyle"/>
40    <property name="build.doccheck.dir"   location="${build.dir}/doccheck"/>
41    <property name="build.filter.src.dir" location="${build.dir}/filtersrc"/>
42 +  <property name="build.dc-filter.dir"  location="${build.dir}/filterdocchk"/>
43 +  <property name="build.jsr166x.dir"    location="${build.dir}/jsr166x"/>
44 +  <property name="build.jsr166xlib.dir"        location="${build.dir}/jsr166xlib"/>
45 +  <property name="build.jsr166xjavadocs.dir"   location="${build.dir}/jsr166xjavadocs"/>
46  
47    <!-- Source locations -->
48    <property name="src.dir"              location="${basedir}/src/main"/>
49    <property name="test.src.dir"         location="${basedir}/src/test"/>
50 +  <property name="j1.src.dir"           location="${basedir}/src/javaone"/>
51 +  <property name="loops.src.dir"        location="${basedir}/src/loops"/>
52 +  <property name="tck.src.dir"          location="${test.src.dir}/tck"/>
53 +  <property name="jtreg.src.dir"        location="${test.src.dir}/jtreg"/>
54    <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
55    <property name="stylesheet.dir"       location="${basedir}/etc/xsl"/>
56    <property name="lib.dir"              location="${basedir}/lib"/>
57    <property name="dist.dir"             location="${basedir}/dist"/>
58 +  <property name="topsrc.dir"           location="${basedir}/src"/>
59 +  <property name="jsr166xsrc.dir"       location="${basedir}/src/jsr166x"/>
60  
61    <!-- Distribution locations -->
62    <property name="dist.javadocs.dir"    location="${dist.dir}/docs"/>
63 +  <property name="dist.jsr166xjavadocs.dir"    location="${dist.dir}/jsr166xdocs"/>
64  
65    <!-- Jar locations -->
66    <property name="product.jar"          location="${build.lib.dir}/jsr166.jar"/>
67 <  <property name="javac.jar"            location="${lib.dir}/javac.jar"/>
69 <  <property name="collect.jar"          location="${lib.dir}/collect.jar"/>
67 >  <property name="jsr166xproduct.jar"   location="${build.jsr166xlib.dir}/jsr166x.jar"/>
68    <property name="junit.jar"            location="${lib.dir}/junit.jar"/>
69 <  <property name="rt.jar"               location="${java.home}/lib/rt.jar"/>
69 >  <property name="concurrent.jar"       location="${lib.dir}/concurrent.jar"/>
70  
71 <  <property name="javac.args"           value='-J-Xbootclasspath/p:$[src.dir]:${javac.jar}'/>
71 >  <!-- Bootclasspath argument -->
72 >  <property name="bootclasspath.args"   value="-Xbootclasspath/p:${product.jar}"/>
73  
74 <  <path id="javac.bootclasspath">
75 <    <pathelement location="${src.dir}"/>
76 <    <pathelement location="${collect.jar}"/>
77 <    <pathelement location="${rt.jar}"/>
74 >  <!-- Test classpath -->
75 >  <path id="test.classpath">
76 >    <pathelement location="${build.testcases.dir}"/>
77 >    <pathelement location="${junit.jar}"/>
78    </path>
79  
80 <  <path id="test.classpath">
81 <    <pathelement location="${product.jar}"/>
80 >  <!-- ALoops classpath -->
81 >  <path id="loops.classpath">
82 >    <pathelement location="${build.loops.dir}"/>
83 >  </path>
84 >
85 >  <!-- J1 classpath -->
86 >  <path id="j1.classpath">
87 >    <pathelement location="${build.j1.dir}"/>
88 >    <pathelement location="${junit.jar}"/>
89 >    <pathelement location="${concurrent.jar}"/>
90    </path>
91  
92  
93    <!-- Main targets -->
94  
95 <  <target name="compile" depends="init"
96 <          description="Compiles all sources to build folder">
95 >
96 >  <target name="compile"
97 >          depends="init, configure-compiler"
98 >          description="Compiles main sources to build folder">
99 >
100      <mkdir dir="${build.classes.dir}"/>
101 +
102      <javac srcdir="${src.dir}"
103            destdir="${build.classes.dir}"
104              debug="${build.debug}"
# Line 96 | Line 107 | ant [target], where target is one of:
107             source="${build.sourcelevel}"
108               fork="true">
109  
110 <      <bootclasspath refid="javac.bootclasspath"/>
111 <      <compilerarg line="${javac.args} ${build.warnings.option}"/>
110 >      <include name="**/*.java"/>
111 >      <exclude name="java/lang/**"/>
112 >      <compilerarg line="${build.args}"/>
113  
114      </javac>
115 +
116    </target>
117  
118  
119 <  <target name="jar" depends="compile"
119 >
120 >  <target name="jar"
121 >          depends="compile"
122            description="Builds library jar from compiled sources">
123 +
124      <mkdir dir="${build.lib.dir}"/>
125 <    <jar basedir="${build.classes.dir}"
126 <        destfile="${product.jar}"
127 <    />
125 >
126 >    <jar destfile="${product.jar}">
127 >      <fileset dir="${build.classes.dir}"/>
128 >    </jar>
129 >
130    </target>
131  
132  
115  <target name="test" depends="init, check-junit, report-tests"
116          description="Runs all tests (requires JUnit 1.8 in ${ant.home}/lib)"/>
133  
134 +  <target name="test"
135 +          depends="init, configure-tests, report-tests"
136 +          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
137  
119  <target name="checkstyle" depends="filter-src"
120          description="Reports on style errors in Java source (verbose, mostly chaff)">
121    <taskdef resource="checkstyletask.properties"
122            classpath="${lib.dir}/checkstyle-all-2.4.jar"/>
138  
139 <    <checkstyle>
140 <      <formatter type="plain"/>  <!-- also available: type="xml" -->
141 <      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
142 <    </checkstyle>
139 >
140 >  <target name="docs"
141 >          description="Builds javadocs with custom tags to build folder">
142 >
143 >    <delete dir="${build.javadocs.dir}"/>
144 >    <mkdir dir="${build.javadocs.dir}"/>
145 >
146 >    <javadoc destdir="${build.javadocs.dir}"
147 >                link="http://java.sun.com/j2se/1.4.1/docs/api"
148 >            overview="${src.dir}/intro.html"
149 >              source="${build.sourcelevel}">
150 >
151 >      <tag name="revised" description="Last revised:"/>
152 >      <tag name="spec"    description="Specified by:"/>
153 >
154 >      <packageset dir="${src.dir}"/>
155 >
156 >    </javadoc>
157 >
158    </target>
159  
160  
161 <  <target name="doccheck" depends="filter-src"
162 <          description="Reports on javadoc style errors (not working yet)">
161 >
162 >  <target name="doccheck"
163 >          depends="filter-doccheck"
164 >          description="Reports on javadoc style errors">
165 >
166      <delete dir="${build.doccheck.dir}"/>
167      <mkdir dir="${build.doccheck.dir}"/>
168 +
169      <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
170           docletpath="${lib.dir}/doccheck.jar"
171              destdir="${build.doccheck.dir}">
172 <      <packageset dir="${build.filter.src.dir}"/>
172 >      <packageset dir="${build.dc-filter.dir}"/>
173      </javadoc>
174 +
175 +    <echo>DocCheck output is in ${build.doccheck.dir}</echo>
176 +
177    </target>
178  
179  
143  <target name="docs" depends="filter-src"
144          description="Builds javadocs with custom tags to build folder">
145    <delete dir="${build.javadocs.dir}"/>
146    <mkdir dir="${build.javadocs.dir}"/>
147    <javadoc destdir="${build.javadocs.dir}"
148                link="http://java.sun.com/j2se/1.4.1/docs/api"
149            overview="${src.dir}/intro.html"
150              source="${build.docsourcelevel}">
180  
181 <      <tag name="revised" description="Last revised:"/>
182 <      <tag name="spec" description="Specified by:"/>
183 <      <tag name="editor" description="Last edited by:"/>
155 <      <tag name="fixme" description="FIX ME:"/>
156 <      <packageset dir="${build.filter.src.dir}"/>
181 >  <target name="checkstyle"
182 >          depends="filter-src"
183 >          description="Reports on style errors in Java source (verbose, mostly chaff)">
184  
185 <    </javadoc>
186 <  </target>
185 >    <taskdef resource="checkstyletask.properties"
186 >            classpath="${lib.dir}/checkstyle-all-3.1.jar"/>
187  
188 +    <mkdir dir="${build.checkstyle.dir}"/>
189  
190 <  <!--
191 <   # javac -s doesn't reliably generate compilable code. It generates
192 <   # bridge methods (marked as "synthetic") that can have identical
193 <   # signatures to existing methods except for the return value.
194 <   -->
167 <  <target name="strip" depends="init">
168 <    <mkdir dir="${build.stripped.dir}"/>
169 <    <javac srcdir="${src.dir}"
170 <          destdir="${build.stripped.dir}"
171 <            debug="${build.debug}"
172 <       debuglevel="${build.debuglevel}"
173 <      deprecation="${build.deprecation}"
174 <           source="${build.sourcelevel}"
175 <             fork="true">
190 >    <checkstyle config="etc/checkstyle/sun_checks.xml"
191 >       failOnViolation="false">
192 >      <formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/>
193 >      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
194 >    </checkstyle>
195  
196 <      <bootclasspath refid="javac.bootclasspath"/>
197 <      <compilerarg line="${javac.args} ${build.warnings.option} -s"/>
196 >    <style in="${build.checkstyle.dir}/checkstyle-report.xml"
197 >          out="${build.checkstyle.dir}/checkstyle-report.html"
198 >        style="${stylesheet.dir}/checkstyle-frames.xsl"/>
199  
180    </javac>
200    </target>
201  
202  
203 <  <target name="dist" depends="init, dist-clean, dist-jar, dist-docs"
203 >
204 >  <target name="dist"
205 >          depends="init, dist-clean, dist-jar, dist-docs"
206            description="Puts all distributable products in single hierarchy"/>
207  
208  
209 +
210 +  <target name="release"
211 +          depends="dist"
212 +          description="Puts entire CVS tree, plus distribution productions, in a jar">
213 +
214 +    <property name="release.jar" value="dist/jsr166-${version}-dist.jar"/>
215 +
216 +    <jar basedir="${basedir}" destfile="${release.jar}">
217 +      <!-- <exclude name="build/**"/> -->
218 +      <exclude name="${release.jar}"/>
219 +      <exclude name="user.properties"/>
220 +      <exclude name="etc/notes/**"/>
221 +      <exclude name="src/emulation/**"/>
222 +      <exclude name="**/SyntaxTest.java"/>
223 +      <exclude name="**/SuperfluousAbstract.java"/>
224 +    </jar>
225 +
226 +  </target>
227 +
228 +
229 +
230    <target name="clean"
231            description="Removes all build products">
232 +
233      <delete dir="${build.dir}"/>
234      <delete dir="${build.classes.dir}"/>
235      <delete dir="${build.lib.dir}"/>
236 +
237    </target>
238  
239  
240 +
241    <target name="dist-clean"
242            description="Removes all build and distribution products">
243 +
244      <delete dir="${dist.dir}"/>
245 +
246    </target>
247  
248  
202  <!-- Anthill targets -->
249  
250 <  <!-- Should really run the tests instead of just the jar target -->
251 <  <target name="anthill-build" depends="jar, docs, dist-docs"/>
250 >  <target name="dist-docs"
251 >          description="Builds javadocs without custom tags to dist folder">
252  
253 <  <target name="anthill-publish">
254 <    <copy todir="${deployDir}/docs/private">
255 <      <fileset dir="${build.javadocs.dir}"/>
256 <    </copy>
257 <    <copy todir="${deployDir}/docs/public">
258 <      <fileset dir="${dist.javadocs.dir}"/>
259 <    </copy>
214 <    <copy tofile="${deployDir}/index.html"
215 <          file="${basedir}/etc/anthill-index.html"/>
216 <    <copy todir="${deployDir}/notes">
217 <      <fileset dir="${basedir}/etc/notes"/>
218 <    </copy>
219 <  </target>
253 >    <delete dir="${dist.javadocs.dir}"/>
254 >    <mkdir dir="${dist.javadocs.dir}"/>
255 >
256 >    <javadoc destdir="${dist.javadocs.dir}"
257 >                link="http://java.sun.com/j2se/1.4.2/docs/api"
258 >            overview="${src.dir}/intro.html"
259 >              source="${build.sourcelevel}">
260  
261 +      <packageset dir="${src.dir}"/>
262  
263 <  <!-- Internal targets -->
263 >    </javadoc>
264  
224  <target name="set-warnings-if" if="build.warnings">
225    <property name="build.warnings.option" value="-warnunchecked"/>
265    </target>
266  
267  
229  <target name="set-warnings-unless" unless="build.warnings">
230    <property name="build.warnings.option" value=""/>
231  </target>
268  
269 +  <!-- Internal targets -->
270 +
271 +
272 +  <target name="init">
273  
234  <target name="init" depends="set-warnings-if, set-warnings-unless">
274      <!-- Version is kept in a separate file -->
275      <loadfile property="version" srcFile="version.properties"/>
276      <echo>Building JSR-166 version ${version}</echo>
277 <  </target>
239 <
277 >    <echo>java.home is ${java.home}</echo>
278  
241  <target name="dist-jar" depends="clean, jar">
242    <copy file="${product.jar}" todir="${dist.dir}"/>
279    </target>
280  
281  
282 <  <target name="dist-docs" depends="filter-src"
283 <          description="Builds javadocs without custom tags to dist folder">
248 <    <delete dir="${dist.javadocs.dir}"/>
249 <    <mkdir dir="${dist.javadocs.dir}"/>
250 <    <javadoc destdir="${dist.javadocs.dir}"
251 <                link="http://java.sun.com/j2se/1.4.1/docs/api"
252 <            overview="${src.dir}/intro.html"
253 <              source="${build.docsourcelevel}">
282 >  <target name="dist-jar"
283 >          depends="clean, jar">
284  
285 <      <packageset dir="${build.filter.src.dir}"/>
285 >    <copy file="${product.jar}" todir="${dist.dir}"/>
286  
257    </javadoc>
287    </target>
288  
289  
290 <  <target name="compile-ant-filter" depends="init">
290 >  <target name="compile-ant-filter"
291 >          depends="init">
292 >
293      <mkdir dir="${build.ant.dir}"/>
294 +
295      <javac srcdir="${ant.src.dir}"
296            destdir="${build.ant.dir}"
297 <           source="1.4"
298 <    />
297 >           source="1.4"/>
298 >
299    </target>
300  
301  
302 <  <target name="filter-src" depends="compile-ant-filter">
302 >  <target name="filter-src"
303 >          depends="compile-ant-filter">
304 >
305      <mkdir dir="${build.filter.src.dir}"/>
306 +
307      <copy todir="${build.filter.src.dir}">
308        <fileset dir="${src.dir}">
309 <        <include name="**/*.java"/>
309 >        <include name="**/*.html"/>
310        </fileset>
311 +    </copy>
312 +
313 +    <copy todir="${build.filter.src.dir}">
314 +      <fileset dir="${src.dir}">
315 +        <exclude name="**/*.html"/>
316 +        <!-- Files excluded from dist-docs -->
317 +        <exclude name="java/util/Random.*"/>
318 +        <exclude name="sun/misc/Unsafe.*"/>
319 +      </fileset>
320 +      <!--
321        <filterchain>
322 +      -->
323 +
324 +        <!--
325 +         # This filter gets rid of angle-bracketed type parameters
326 +         # so that javadoc can run on the result. The following
327 +         # heuristic seems to work:
328 +         #
329 +         # For all lines not starting with space(s)-asterisk-space(s),
330 +         #   replace <something> with a space, where there may be more
331 +         #   than one right angle bracket at the end, and "something"
332 +         #   must not contain parens or pipes. (This may need some
333 +         #   tweaking.)
334 +         -->
335 +
336 +        <!--
337          <filterreader classname="jsr166.ant.filters.ReplaceFilter"
338                        classpath="${build.ant.dir}">
279          <!--
280           # These arguments are to get rid of angle-bracketed type
281           # parameters so that javadoc can run on the result. The
282           # following heuristic that seems to work:
283           #
284           # For all lines not starting with space(s)-asterisk-space(s),
285           #   replace <something> with a space, where there may be more
286           #   than one right angle bracket at the end, and "something"
287           #   must not contain parens or pipes. (This may need some
288           #   tweaking.)
289           -->
339            <param name="notmatching" value="^\s+\*\s.*$"/>
340 <          <param name="pattern" value="&lt;[^|>()]+?>+"/>
340 >          <param name="pattern"     value="&lt;[^|>()]+?>+"/>
341            <param name="replacement" value=" "/>
342          </filterreader>
343 +        -->
344 +
345 +      <!--
346 +      </filterchain>
347 +      -->
348 +    </copy>
349 +
350 +  </target>
351 +
352 +
353 +  <target name="filter-doccheck"
354 +          depends="filter-src">
355 +
356 +    <mkdir dir="${build.dc-filter.dir}"/>
357 +
358 +    <copy todir="${build.dc-filter.dir}">
359 +      <fileset dir="${build.filter.src.dir}">
360 +        <include name="**/*.html"/>
361 +      </fileset>
362 +    </copy>
363 +
364 +    <property name="generic.declarations"
365 +             value="/** Fake type parameter. */ public interface E {} /** Fake type parameter. */ public interface T {} /** Fake type parameter. */ public interface K {} /** Fake type parameter. */ public interface V {}"
366 +    />
367 +
368 +    <copy todir="${build.dc-filter.dir}">
369 +      <fileset dir="${build.filter.src.dir}">
370 +        <exclude name="**/*.html"/>
371 +      </fileset>
372 +      <filterchain>
373 +        <!--
374 +         # These two filters try to make the source look like
375 +         # something that doccheck can process. The first removes
376 +         # -source 1.4 assertions and the second adds in a bunch
377 +         # of single letter public nested marker interfaces so that
378 +         # the generic type parameters are recognized.
379 +         -->
380 +
381 +        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
382 +                      classpath="${build.ant.dir}">
383 +          <param name="matching"    value="^\s*assert[\s ].*$"/>
384 +          <param name="pattern"     value="assert"/>
385 +          <param name="replacement" value="//assert"/>
386 +        </filterreader>
387 +
388          <filterreader classname="jsr166.ant.filters.ReplaceFilter"
389                        classpath="${build.ant.dir}">
390 <          <!--
391 <           # These arguments are to uncomment lines beginning with
392 <           # "//@" so that javadoc can see imports that are needed
299 <           # to resolve links but that shouldn't be in the compiled
300 <           # code.
301 <           -->
302 <          <param name="matching" value="^//@.*$"/>
303 <          <param name="pattern" value="^//@"/>
304 <          <param name="replacement" value=""/>
390 >          <param name="matching"    value="^([^*]*(class|interface|implements) .*|)\{.*$"/>
391 >          <param name="pattern"     value="$"/>
392 >          <param name="replacement" value=" ${generic.declarations}"/>
393          </filterreader>
394 +
395        </filterchain>
396      </copy>
397 +
398    </target>
399  
400  
401 <  <target name="compile-tests" depends="jar">
401 >  <target name="compile-tests"
402 >          depends="jar">
403 >
404      <mkdir dir="${build.testcases.dir}"/>
405 +
406 +    <javac srcdir="${tck.src.dir}"
407 +          destdir="${build.testcases.dir}"
408 +            debug="${build.debug}"
409 +       debuglevel="${build.debuglevel}"
410 +      deprecation="${build.deprecation}"
411 +           source="${build.sourcelevel}"
412 +             fork="true">
413 +
414 +      <compilerarg value="${bootclasspath.args}"/>
415 +      <compilerarg line="${build.args}"/>
416 +
417 +      <classpath refid="test.classpath"/>
418 +
419 +    </javac>
420 +
421      <javac srcdir="${test.src.dir}"
422            destdir="${build.testcases.dir}"
423              debug="${build.debug}"
# Line 318 | Line 426 | ant [target], where target is one of:
426             source="${build.sourcelevel}"
427               fork="true">
428  
429 <      <bootclasspath refid="javac.bootclasspath"/>
430 <      <compilerarg line="${javac.args} ${build.warnings.option}"/>
429 >      <include name="jsr166/test/**"/>
430 >
431 >      <compilerarg value="${bootclasspath.args}"/>
432 >      <compilerarg line="${build.args}"/>
433 >
434        <classpath refid="test.classpath"/>
435  
436      </javac>
437 +
438 + <!--
439 +    <javac srcdir="${jtreg.src.dir}"
440 +          destdir="${build.testcases.dir}"
441 +            debug="${build.debug}"
442 +       debuglevel="${build.debuglevel}"
443 +      deprecation="${build.deprecation}"
444 +           source="${build.sourcelevel}"
445 +             fork="true">
446 +
447 +      <compilerarg value="${bootclasspath.args}"/>
448 +      <compilerarg line="${build.args}"/>
449 +
450 +      <classpath refid="test.classpath"/>
451 +
452 +    </javac>
453 + -->
454 +
455    </target>
456  
457  
458 <  <target name="run-tests" depends="compile-tests">
458 >  <target name="run-tests"
459 >          depends="compile-tests">
460 >
461 >    <!-- May be overridden by user.properties -->
462 >    <property name="testcase" value="*"/>
463 >
464      <mkdir dir="${build.reports.dir}"/>
465 +
466      <junit printsummary="true"
467               showoutput="true"
468            errorProperty="junit.failed"
# Line 335 | Line 470 | ant [target], where target is one of:
470                      dir="${build.reports.dir}"
471                     fork="true">
472  
473 <      <!--
474 <       ! This nastiness is so JUnit can test classes we are inserting
475 <       ! into the java.* packages.
476 <       -->
477 <      <jvmarg value="-Xbootclasspath/p:${product.jar};${build.testcases.dir};${junit.jar}"/>
473 >      <jvmarg value="${bootclasspath.args}"/>
474 >      <jvmarg value="-server"/>
475 >      <jvmarg value="-showversion"/>
476 >
477 >      <classpath refid="test.classpath"/>
478  
479        <formatter type="xml"/>
480  
481 <      <batchtest todir="${build.reports.dir}">
481 >      <batchtest todir="${build.reports.dir}" unless="no.test.tck">
482 >        <fileset dir="${tck.src.dir}">
483 >          <include name="**/${testcase}Test.java"/>
484 >        </fileset>
485 >      </batchtest>
486 >
487 >      <batchtest todir="${build.reports.dir}" if="do.test.old">
488          <fileset dir="${test.src.dir}">
489 +          <include name="jsr166/test/**/${testcase}Test.java"/>
490 +        </fileset>
491 +      </batchtest>
492 +
493 + <!--
494 +      <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
495 +        <fileset dir="${jtreg.src.dir}">
496            <include name="**/${testcase}Test.java"/>
497          </fileset>
498        </batchtest>
499 + -->
500  
501      </junit>
502 +
503    </target>
504  
505  
506 <  <target name="report-tests" depends="run-tests">
507 <    <!-- Sets junit.report.format to frames if Xalan is present,
506 >  <target name="report-tests"
507 >          depends="run-tests">
508 >
509 >    <!-- Sets junit.report.format to frames if redirection is present,
510           otherwise sets it to noframes. -->
511      <available property="junit.report.format"
512                    value="frames"
# Line 373 | Line 525 | ant [target], where target is one of:
525      </junitreport>
526  
527      <fail message="Test Cases Failed" if="junit.failed"/>
528 +
529 +  </target>
530 +
531 +
532 +  <target name="configure-compiler">
533 +
534 +    <property name="unchecked.option" value="-Xlint:unchecked"/>
535 +
536 +    <condition property="warnunchecked.arg" value="${unchecked.option}">
537 +      <istrue value="${build.warnunchecked}"/>
538 +    </condition>
539 +
540 +    <property name="warnunchecked.arg" value=""/>
541 +
542 +
543 +    <!-- Common options in javac invocations -->
544 +    <property name="build.args" value="${warnunchecked.arg}"/>
545 +
546    </target>
547  
548  
549 <  <target name="check-junit">
550 <    <!-- FIXME: this test isn't specific enough -->
549 >  <target name="configure-tests"
550 >       depends="configure-compiler">
551 >
552 >    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
553      <available property="junit.available"
554 <               classname="junit.framework.TestCase"/>
555 <    <fail message="Need JUnit 3.8 to run tests" unless="junit.available"/>
554 >               classname="junit.framework.Protectable"/>
555 >
556 >    <!-- Xalan -->
557 >    <available property="xalan.available"
558 >               classname="org.apache.xalan.Version"/>
559 >
560 >
561 >    <!-- Ant 1.6beta and later don't need or want this check -->
562 >    <!--
563 >    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
564 >          unless="junit.available"/>
565 >
566 >    <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
567 >          unless="xalan.available"/>
568 >    -->
569 >
570 >  </target>
571 >
572 >
573 >
574 >  <!-- Anthill targets -->
575 >
576 >  <target name="anthill-build">
577 >
578 >    <!-- Override this in user.properties -->
579 >    <property name="tiger.home" location="e:/j2sdk1.5.0"/>
580 >
581 >    <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
582 >      <arg value="-Xmx256000000"/>
583 >      <!-- classpath of new JVM -->
584 >      <arg value="-classpath"/> <arg path="${java.class.path}"/>
585 >      <!-- location of Ant home directory -->
586 >      <arg value="-Dant.home=${ant.home}"/>
587 >      <!-- the Ant main class -->
588 >      <arg value="org.apache.tools.ant.Main"/>
589 >      <!-- The build file -->
590 >      <arg value="-buildfile"/>  <arg value="build.xml"/>
591 >      <!-- the target to build on the new Ant instance -->
592 >      <arg value="-DJAVA_HOME=${tiger.home}"/>
593 >      <arg value="do-anthill-build"/>
594 >    </exec>
595 >  </target>
596 >
597 >  <target name="do-anthill-build"
598 >          depends="jar, test, docs, dist-docs"/>
599 >
600 >  <target name="anthill-publish">
601 >
602 >    <copy todir="${deployDir}/docs/private">
603 >      <fileset dir="${build.javadocs.dir}"/>
604 >    </copy>
605 >
606 >    <copy todir="${deployDir}/docs/public">
607 >      <fileset dir="${dist.javadocs.dir}"/>
608 >    </copy>
609 >
610 >    <copy tofile="${deployDir}/index.html"
611 >          file="${basedir}/etc/anthill-index.html"/>
612 >
613 >    <copy todir="${deployDir}/notes">
614 >      <fileset dir="${basedir}/etc/notes"/>
615 >    </copy>
616 >
617 >  </target>
618 >
619 >
620 >
621 >  <!-- Various demos and test programs -->
622 >
623 >
624 >  <target name="sample" depends="init, configure-compiler"
625 >          description="Standalone demo program">
626 >
627 >    <mkdir dir="${build.testcases.dir}"/>
628 >
629 >    <javac srcdir="${test.src.dir}"
630 >          destdir="${build.testcases.dir}"
631 >            debug="${build.debug}"
632 >       debuglevel="${build.debuglevel}"
633 >      deprecation="${build.deprecation}"
634 >           source="${build.sourcelevel}"
635 >             fork="true">
636 >
637 >      <include name="jsr166/test/Sample.java"/>
638 >
639 >    </javac>
640 >
641 >    <copy todir="${build.testcases.dir}">
642 >      <fileset dir="${test.src.dir}">
643 >        <include name="**/*.properties"/>
644 >      </fileset>
645 >    </copy>
646 >
647 >
648 >    <java classname="jsr166.test.Sample" fork="true">
649 >      <classpath refid="test.classpath"/>
650 >      <!-- <jvmarg value="-ea"/> -->
651 >      <!-- <jvmarg value="-server"/> -->
652 >      <!-- <arg value="1000"/> -->
653 >    </java>
654 >  </target>
655 >
656 >
657 >  <target name="loops" depends="init, configure-compiler"
658 >          description="Benchmark from Doug Lea's AQS paper">
659 >
660 >    <mkdir dir="${build.loops.dir}"/>
661 >
662 >    <javac srcdir="${loops.src.dir}"
663 >          destdir="${build.loops.dir}"
664 >            debug="${build.debug}"
665 >       debuglevel="${build.debuglevel}"
666 >      deprecation="${build.deprecation}"
667 >           source="${build.sourcelevel}"
668 >             fork="true">
669 >
670 >      <compilerarg line="${build.args}"/>
671 >      <classpath refid="loops.classpath"/>
672 >
673 >    </javac>
674 >
675 >    <java classname="ALoops" fork="true">
676 >      <classpath refid="loops.classpath"/>
677 >    </java>
678 >
679 >  </target>
680 >
681 >
682 >  <target name="compile-j1" depends="init, configure-compiler">
683 >
684 >    <mkdir dir="${build.j1.dir}"/>
685 >
686 >    <javac srcdir="${j1.src.dir}"
687 >          destdir="${build.j1.dir}"
688 >            debug="${build.debug}"
689 >       debuglevel="${build.debuglevel}"
690 >      deprecation="${build.deprecation}"
691 >           source="${build.sourcelevel}" >
692 >
693 >      <include name="**/*.java"/>
694 >      <exclude name="**/dijkstra/**"/>
695 >
696 >      <compilerarg line="${build.args}"/>
697 >      <classpath refid="j1.classpath"/>
698 >
699 >    </javac>
700 >
701    </target>
702  
703  
704 +  <target name="sw" depends="compile-j1"
705 +          description="Runs the SwingWorker demo">
706 +
707 +    <!--
708 +    <java classname="jsr166.swing.SwingWorkerDemo" fork="true">
709 +      <classpath refid="j1.classpath"/>
710 +    </java>
711 +    -->
712 +
713 +    <copy todir="${build.j1.dir}" file="${j1.src.dir}/jsr166/swing/SwingWorker.html"/>
714 +
715 +    <exec dir="${build.j1.dir}" executable="appletviewer.exe">
716 +      <arg value="${build.j1.dir}/SwingWorker.html"/>
717 +    </exec>
718 +
719 +  </target>
720 +
721 +  <target name="j1" depends="compile-j1"
722 +          description="Runs a standalone JavaOne program">
723 +
724 +    <java classname="${j1.test}" fork="true">
725 +      <classpath refid="j1.classpath"/>
726 +      <jvmarg value="-client"/>
727 +
728 +      <!-- TestPseudoRandom args -->
729 +      <arg value="2"/>
730 +      <arg value="25"/>
731 +      <arg value="100000"/>
732 +
733 +      <!-- WebCrawler args -->
734 +      <!--
735 +      <arg value="jsr166.webcrawler.WebCrawler3"/>
736 +      <arg value="http://www.priorartisans.com"/>
737 +      <arg value="25"/>
738 +      -->
739 +
740 +    </java>
741 +
742 +  </target>
743 +
744 +
745 +  <target name="test-j1" depends="compile-j1"
746 +          description="Runs testcases from the JavaOne source directories">
747 +
748 +    <junit printsummary="true"
749 +             showoutput="true"
750 +          errorProperty="junit.failed"
751 +        failureProperty="junit.failed"
752 +                    dir="${build.j1.dir}"
753 +                   fork="true">
754 +
755 +      <!-- <jvmarg value="-server"/> -->
756 +      <classpath refid="j1.classpath"/>
757 +      <formatter type="xml"/>
758 +
759 +      <batchtest todir="${build.j1.dir}">
760 +        <fileset dir="${j1.src.dir}">
761 +          <include name="**/*Test.java"/>
762 +        </fileset>
763 +      </batchtest>
764 +
765 +    </junit>
766 +
767 +    <available property="junit.report.format"
768 +                  value="frames"
769 +              classname="org.apache.xalan.lib.Redirect"/>
770 +    <property name="junit.report.format" value="noframes"/>
771 +
772 +    <junitreport todir="${build.j1.dir}">
773 +      <fileset dir="${build.j1.dir}">
774 +        <include name="TEST-*.xml"/>
775 +      </fileset>
776 +      <report styledir="${stylesheet.dir}"
777 +                format="${junit.report.format}"
778 +                 todir="${build.j1.dir}"
779 +      />
780 +    </junitreport>
781 +
782 +    <fail message="Test Cases Failed" if="junit.failed"/>
783 +
784 +  </target>
785 +
786 +
787 +
788 +  <!-- C++ and JNI definitions and demos -->
789 +
790 +  <target name="configure-cpp">
791 +
792 +    <!-- Define tasks and types -->
793 +
794 +    <path id="cpptasks.path">
795 +      <pathelement location="${lib.dir}/cpptasks.jar"/>
796 +    </path>
797 +    <taskdef resource="cpptasks.tasks" classpathref="cpptasks.path"/>
798 +    <typedef resource="cpptasks.types" classpathref="cpptasks.path"/>
799 +
800 +    <!-- Set platform property for JNI includes -->
801 +
802 +    <condition property="platform" value="linux">
803 +      <os name="Linux"/>
804 +    </condition>
805 +    <condition property="platform" value="win32">
806 +      <os family="windows"/>
807 +    </condition>
808 +    <condition property="platform" value="solaris">
809 +      <os name="SunOS"/>
810 +    </condition>
811 +
812 +  </target>
813 +
814 +
815 +  <target name="cppdemo" depends="configure-cpp">
816 +
817 +    <mkdir dir="${build.dir}"/>
818 +
819 +    <cc multithreaded="true"
820 +                 name="g++"
821 +               objdir="${build.dir}"
822 +              outfile="${build.dir}/CppDemo">
823 +      <fileset dir="${test.src.dir}" includes="CppDemo.cpp"/>
824 +      <libset libs="stdc++"/>
825 +    </cc>
826 +
827 +    <exec executable="${build.dir}/CppDemo">
828 +      <arg line="count in word frequency of word in command line count"/>
829 +    </exec>
830 +
831 +  </target>
832 +
833 +
834 +  <target name="jnidemo" depends="init, configure-compiler, configure-cpp">
835 +
836 +    <mkdir dir="${build.testcases.dir}"/>
837 +
838 +    <javac srcdir="${test.src.dir}"
839 +          destdir="${build.testcases.dir}"
840 +            debug="${build.debug}"
841 +       debuglevel="${build.debuglevel}"
842 +      deprecation="${build.deprecation}"
843 +           source="${build.sourcelevel}"
844 +             fork="true">
845 +      <compilerarg value="${bootclasspath.args}"/>
846 +      <compilerarg line="${build.args}"/>
847 +      <classpath refid="test.classpath"/>
848 +      <include name="JniDemo.java"/>
849 +    </javac>
850 +
851 +    <javah destdir="${build.testcases.dir}"
852 +      classpathref="test.classpath">
853 +      <class name="JniDemo"/>
854 +    </javah>
855 +
856 +    <cc multithreaded="true"
857 +                 name="g++"
858 +               objdir="${build.dir}"
859 +              outfile="${build.dir}/JniDemo"
860 +              outtype="shared">
861 +
862 +      <compiler>
863 +        <defineset>
864 +          <define name="__int64" value="long long"/>
865 +        </defineset>
866 +        <includepath location="${java.home}/../include"/>
867 +        <includepath location="${java.home}/../include/${platform}"/>
868 +        <compilerarg value="-mno-cygwin"/>
869 +      </compiler>
870 +
871 +      <linker>
872 +        <linkerarg value="--add-stdcall-alias"/>
873 +      </linker>
874 +
875 +      <includepath location="${build.testcases.dir}"/>
876 +
877 +      <fileset dir="${test.src.dir}" includes="JniDemo.cpp"/>
878 +
879 +      <libset libs="stdc++"/>
880 +
881 +    </cc>
882 +
883 +    <!-- Necessary if windows, harmless if not -->
884 +    <copy file="${build.dir}/libJniDemo.so" tofile="${build.dir}/JniDemo.dll"/>
885 +
886 +    <java classname="JniDemo" fork="true">
887 +      <!-- Watch out: path separator hardwired to semicolon here! -->
888 +      <sysproperty key="java.library.path" path="${java.library.path};${build.dir}"/>
889 +      <classpath refid="test.classpath"/>
890 +      <arg line="count in word frequency of word in command line count"/>
891 +    </java>
892 +
893 +  </target>
894 +
895 +
896 +
897 +  <!-- Backward compatibility, work in progress (some files not checked in) -->
898 +
899 +
900 +
901 +  <property name="pretiger.src.dir"     location="${build.dir}/pretiger/src"/>
902 +  <property name="build.pretiger.dir"   location="${build.dir}/pretiger/classes"/>
903 +  <property name="pretiger.jar"         location="${build.lib.dir}/jsr166-pretiger.jar"/>
904 +  <property name="pretiger.sourcelevel" value="1.4"/>
905 +
906 +  <target name="defang"
907 +       depends="init"
908 +   description="Generates pre-Tiger compatible source">
909 +
910 +    <delete dir="${pretiger.src.dir}"/>
911 +    <mkdir dir="${pretiger.src.dir}"/>
912 +
913 +    <exec executable="perl">
914 +      <arg file="etc/defang.pl"/>
915 +      <!-- <arg value="-v"/> -->
916 +      <arg value="-s"/> <arg file="${src.dir}"/>
917 +      <arg value="-t"/> <arg file="${pretiger.src.dir}"/>
918 +    </exec>
919 +
920 +  </target>
921 +
922 +  <target name="compile-pretiger"
923 +          depends="init, configure-compiler, defang"
924 +          description="Compiles pre-Tiger sources to build folder">
925 +
926 +    <mkdir dir="${build.pretiger.dir}"/>
927 +
928 +    <javac srcdir="${pretiger.src.dir}"
929 +          destdir="${build.pretiger.dir}"
930 +            debug="${build.debug}"
931 +       debuglevel="${build.debuglevel}"
932 +      deprecation="${build.deprecation}"
933 +           source="${pretiger.sourcelevel}"
934 +             fork="true">
935 +
936 +      <compilerarg line="${build.args}"/>
937 +      <exclude name="**/Thread.java"/>
938 +
939 +    </javac>
940 +
941 +  </target>
942 +
943 +  <target name="pretiger" depends="compile-pretiger">
944 +
945 +    <mkdir dir="${build.lib.dir}"/>
946 +
947 +    <jar destfile="${pretiger.jar}">
948 +      <fileset dir="${build.pretiger.dir}">
949 +      </fileset>
950 +    </jar>
951 +
952 +  </target>
953 +
954 +  <!-- jsr166x -->
955 +
956 +
957 +  <target name="jsr166xcompile"
958 +          depends="init, configure-compiler"
959 +          description="Compiles jsr166x sources">
960 +
961 +    <mkdir dir="${build.jsr166x.dir}"/>
962 +
963 +    <javac srcdir="${jsr166xsrc.dir}"
964 +          destdir="${build.jsr166x.dir}"
965 +            debug="${build.debug}"
966 +       debuglevel="${build.debuglevel}"
967 +      deprecation="${build.deprecation}"
968 +           source="${build.sourcelevel}"
969 +             fork="true">
970 +
971 +      <include name="**/*.java"/>
972 +      <compilerarg line="${build.args}"/>
973 +
974 +    </javac>
975 +
976 +  </target>
977 +
978 +
979 +
980 +  <target name="jsr166xjar"
981 +          depends="jsr166xcompile"
982 +          description="Builds library jar from compiled sources">
983 +
984 +    <mkdir dir="${build.jsr166xlib.dir}"/>
985 +
986 +    <jar destfile="${jsr166xproduct.jar}">
987 +      <fileset dir="${build.jsr166x.dir}"/>
988 +    </jar>
989 +
990 +  </target>
991 +
992 +
993 +
994 +  <target name="jsr166xdocs"
995 +          description="Builds javadocs with custom tags to build folder">
996 +
997 +    <delete dir="${build.jsr166xjavadocs.dir}"/>
998 +    <mkdir dir="${build.jsr166xjavadocs.dir}"/>
999 +
1000 +    <javadoc destdir="${build.jsr166xjavadocs.dir}"
1001 +                link="http://java.sun.com/j2se/1.5.0/docs/api/"
1002 +    >
1003 +      <packageset dir="${topsrc.dir}" defaultexcludes="yes">
1004 +      <include name="jsr166x"/>
1005 +      </packageset>
1006 +
1007 +
1008 +    </javadoc>
1009 +
1010 +  </target>
1011 +
1012 +
1013 +  <target name="jsr166xdist"
1014 +          depends="jsr166xdist-clean, jsr166xdist-jar, jsr166xdist-docs"
1015 +          description="Puts all distributable products in single hierarchy"/>
1016 +
1017 +
1018 +
1019 +  <target name="jsr166xclean"
1020 +          description="Removes all build products">
1021 +
1022 +    <delete dir="${build.jsr166x.dir}"/>
1023 +    <delete dir="${build.jsr166xlib.dir}"/>
1024 +
1025 +  </target>
1026 +
1027 +
1028 +
1029 +  <target name="jsr166xdist-clean"
1030 +          description="Removes all build and distribution products">
1031 +
1032 +  </target>
1033 +
1034 +
1035 +
1036 +  <target name="jsr166xdist-docs"
1037 +          description="Builds javadocs without custom tags to dist folder">
1038 +
1039 +    <delete dir="${dist.jsr166xjavadocs.dir}"/>
1040 +    <mkdir dir="${dist.jsr166xjavadocs.dir}"/>
1041 +
1042 +    <javadoc destdir="${dist.jsr166xjavadocs.dir}"
1043 +                link="http://java.sun.com/j2se/1.5.0/docs/api/"
1044 +              source="${build.sourcelevel}">
1045 +
1046 +      <packageset dir="${topsrc.dir}" defaultexcludes="yes">
1047 +      <include name="jsr166x"/>
1048 +      </packageset>
1049 +
1050 +    </javadoc>
1051 +
1052 +  </target>
1053 +
1054 +  <target name="jsr166xdist-jar"
1055 +          depends="jsr166xclean, jsr166xjar">
1056 +
1057 +    <copy file="${jsr166xproduct.jar}" todir="${dist.dir}"/>
1058 +
1059 +  </target>
1060 +
1061   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines