ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
Revision: 1.65
Committed: Fri Apr 9 20:10:29 2004 UTC (20 years ago) by jsr166
Content type: text/xml
Branch: MAIN
Changes since 1.64: +146 -104 lines
Log Message:
Add target to run appletviewer on SwingWorkerDemo

File Contents

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