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.64 by tim, Wed Mar 24 20:32:33 2004 UTC vs.
Revision 1.67 by jsr166, Sun Apr 11 22:00:40 2004 UTC

# Line 31 | Line 31
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"/>
# Line 44 | Line 45
45    <property name="src.dir"              location="${basedir}/src/main"/>
46    <property name="test.src.dir"         location="${basedir}/src/test"/>
47    <property name="j1.src.dir"           location="${basedir}/src/javaone"/>
48 +  <property name="loops.src.dir"        location="${basedir}/src/loops"/>
49    <property name="tck.src.dir"          location="${test.src.dir}/tck"/>
50    <property name="jtreg.src.dir"        location="${test.src.dir}/jtreg"/>
51    <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
# Line 57 | Line 59
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 <  
62 >  <property name="concurrent.jar"       location="${lib.dir}/concurrent.jar"/>
63 >
64    <!-- Bootclasspath argument -->
65    <property name="bootclasspath.args"   value="-Xbootclasspath/p:${product.jar}"/>
66  
# Line 67 | Line 70
70      <pathelement location="${junit.jar}"/>
71    </path>
72  
73 <  <!-- Test classpath -->
73 >  <!-- ALoops classpath -->
74 >  <path id="loops.classpath">
75 >    <pathelement location="${build.loops.dir}"/>
76 >  </path>
77 >
78 >  <!-- J1 classpath -->
79    <path id="j1.classpath">
80      <pathelement location="${build.j1.dir}"/>
81      <pathelement location="${junit.jar}"/>
82 +    <pathelement location="${concurrent.jar}"/>
83    </path>
84  
85  
# Line 168 | Line 177
177              classpath="${lib.dir}/checkstyle-all-3.1.jar"/>
178  
179      <mkdir dir="${build.checkstyle.dir}"/>
180 <    
180 >
181      <checkstyle config="etc/checkstyle/sun_checks.xml"
182         failOnViolation="false">
183 <      <formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/>
183 >      <formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/>
184        <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
185      </checkstyle>
186 <    
187 <    <style in="${build.checkstyle.dir}/checkstyle-report.xml"
188 <          out="${build.checkstyle.dir}/checkstyle-report.html"
186 >
187 >    <style in="${build.checkstyle.dir}/checkstyle-report.xml"
188 >          out="${build.checkstyle.dir}/checkstyle-report.html"
189          style="${stylesheet.dir}/checkstyle-frames.xsl"/>
190  
191    </target>
192  
193 <  
193 >
194  
195    <target name="dist"
196            depends="init, dist-clean, dist-jar, dist-docs"
# Line 259 | Line 268
268      <echo>java.home is ${java.home}</echo>
269  
270    </target>
271 <  
272 <  
271 >
272 >
273    <target name="dist-jar"
274            depends="clean, jar">
275  
# Line 276 | Line 285
285  
286      <javac srcdir="${ant.src.dir}"
287            destdir="${build.ant.dir}"
288 <           source="1.4"
280 <    />
288 >           source="1.4"/>
289  
290    </target>
291  
# Line 396 | Line 404
404  
405        <compilerarg value="${bootclasspath.args}"/>
406        <compilerarg line="${build.args}"/>
407 <      
407 >
408        <classpath refid="test.classpath"/>
409  
410      </javac>
# Line 410 | Line 418
418               fork="true">
419  
420        <include name="jsr166/test/**"/>
421 <      
421 >
422        <compilerarg value="${bootclasspath.args}"/>
423        <compilerarg line="${build.args}"/>
424 <      
424 >
425        <classpath refid="test.classpath"/>
426  
427      </javac>
# Line 429 | Line 437
437  
438        <compilerarg value="${bootclasspath.args}"/>
439        <compilerarg line="${build.args}"/>
440 <      
440 >
441        <classpath refid="test.classpath"/>
442  
443      </javac>
# Line 456 | Line 464
464        <jvmarg value="${bootclasspath.args}"/>
465        <jvmarg value="-server"/>
466        <jvmarg value="-showversion"/>
467 <      
467 >
468        <classpath refid="test.classpath"/>
469  
470        <formatter type="xml"/>
# Line 466 | Line 474
474            <include name="**/${testcase}Test.java"/>
475          </fileset>
476        </batchtest>
477 <      
477 >
478        <batchtest todir="${build.reports.dir}" if="do.test.old">
479          <fileset dir="${test.src.dir}">
480            <include name="jsr166/test/**/${testcase}Test.java"/>
481          </fileset>
482        </batchtest>
483  
484 < <!--      
484 > <!--
485        <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
486          <fileset dir="${jtreg.src.dir}">
487            <include name="**/${testcase}Test.java"/>
# Line 540 | Line 548
548      <available property="xalan.available"
549                 classname="org.apache.xalan.Version"/>
550  
551 <              
551 >
552      <!-- Ant 1.6beta and later don't need or want this check -->
553 <    <!--    
553 >    <!--
554      <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
555            unless="junit.available"/>
556  
# Line 557 | Line 565
565    <!-- Anthill targets -->
566  
567    <target name="anthill-build">
568 <  
568 >
569      <!-- Override this in user.properties -->
570      <property name="tiger.home" location="e:/j2sdk1.5.0"/>
571 <    
571 >
572      <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
573        <arg value="-Xmx256000000"/>
574        <!-- classpath of new JVM -->
# Line 576 | Line 584
584        <arg value="do-anthill-build"/>
585      </exec>
586    </target>
587 <  
587 >
588    <target name="do-anthill-build"
589            depends="jar, test, docs, dist-docs"/>
590  
# Line 600 | Line 608
608    </target>
609  
610  
611 <  <!-- Standalone sample program -->
612 <  
613 <  <target name="sample" depends="">
614 <  
611 >
612 >  <!-- Various demos and test programs -->
613 >
614 >
615 >  <target name="sample" depends="init, configure-compiler"
616 >          description="Standalone demo program">
617 >
618      <mkdir dir="${build.testcases.dir}"/>
619 <    
619 >
620      <javac srcdir="${test.src.dir}"
621            destdir="${build.testcases.dir}"
622              debug="${build.debug}"
# Line 613 | Line 624
624        deprecation="${build.deprecation}"
625             source="${build.sourcelevel}"
626               fork="true">
627 <      
617 <      <!--
618 <      <compilerarg value="${bootclasspath.args}"/>
619 <      <compilerarg line="${build.args}"/>
620 <      
621 <      <classpath refid="test.classpath"/>
622 <      -->
623 <      
627 >
628        <include name="jsr166/test/Sample.java"/>
629 <      
629 >
630      </javac>
631 <    
631 >
632      <copy todir="${build.testcases.dir}">
633        <fileset dir="${test.src.dir}">
634          <include name="**/*.properties"/>
635        </fileset>
636      </copy>
637 <  
638 <            
637 >
638 >
639      <java classname="jsr166.test.Sample" fork="true">
636      <jvmarg value="${bootclasspath.args}"/>
637      <!-- <jvmarg value="-server"/> -->
638      <!-- <jvmarg value="-ea"/> -->
640        <classpath refid="test.classpath"/>
641 +      <!-- <jvmarg value="-ea"/> -->
642 +      <!-- <jvmarg value="-server"/> -->
643        <!-- <arg value="1000"/> -->
644      </java>
645    </target>
646  
647  
648 <  <!-- BoF demos -->
649 <  
650 <  <target name="j1" depends="jar">
651 <  
648 >  <target name="loops" depends="init, configure-compiler"
649 >          description="Benchmark from Doug Lea's AQS paper">
650 >
651 >    <mkdir dir="${build.loops.dir}"/>
652 >
653 >    <javac srcdir="${loops.src.dir}"
654 >          destdir="${build.loops.dir}"
655 >            debug="${build.debug}"
656 >       debuglevel="${build.debuglevel}"
657 >      deprecation="${build.deprecation}"
658 >           source="${build.sourcelevel}"
659 >             fork="true">
660 >
661 >      <compilerarg line="${build.args}"/>
662 >      <classpath refid="loops.classpath"/>
663 >
664 >    </javac>
665 >
666 >    <java classname="ALoops" fork="true">
667 >      <classpath refid="loops.classpath"/>
668 >    </java>
669 >
670 >  </target>
671 >
672 >
673 >  <target name="compile-j1" depends="init, configure-compiler">
674 >
675      <mkdir dir="${build.j1.dir}"/>
676 <    
676 >
677      <javac srcdir="${j1.src.dir}"
678            destdir="${build.j1.dir}"
679              debug="${build.debug}"
680         debuglevel="${build.debuglevel}"
681        deprecation="${build.deprecation}"
682 <           source="${build.sourcelevel}"
683 <             fork="true">
684 <            
685 <      <compilerarg value="${bootclasspath.args}"/>
682 >           source="${build.sourcelevel}" >
683 >
684 >      <include name="**/*.java"/>
685 >      <exclude name="**/dijkstra/**"/>
686 >
687        <compilerarg line="${build.args}"/>
661      
688        <classpath refid="j1.classpath"/>
689 <      
689 >
690      </javac>
691 <    
692 < <!--
693 <    <java classname="MainClass" fork="true">
694 <      <jvmarg value="${bootclasspath.args}"/>
691 >
692 >  </target>
693 >
694 >
695 >  <target name="sw" depends="compile-j1"
696 >          description="Runs the SwingWorker demo">
697 >
698 >    <!--
699 >    <java classname="jsr166.swing.SwingWorkerDemo" fork="true">
700        <classpath refid="j1.classpath"/>
701      </java>
702 < -->
702 >    -->
703 >
704 >    <copy todir="${build.j1.dir}" file="${j1.src.dir}/jsr166/swing/SwingWorker.html"/>
705 >
706 >    <exec dir="${build.j1.dir}" executable="appletviewer.exe">
707 >      <arg value="${build.j1.dir}/SwingWorker.html"/>
708 >    </exec>
709 >
710 >  </target>
711 >
712 >  <target name="j1" depends="compile-j1"
713 >          description="Runs a standalone JavaOne program">
714 >
715 >    <java classname="jsr166.random.TestRandom" fork="true">
716 >      <classpath refid="j1.classpath"/>
717 >      <jvmarg value="-client"/>
718 >    </java>
719 >
720 >  </target>
721 >
722 >
723 >  <target name="test-j1" depends="compile-j1"
724 >          description="Runs testcases from the JavaOne source directories">
725  
726      <junit printsummary="true"
727               showoutput="true"
# Line 677 | Line 730
730                      dir="${build.j1.dir}"
731                     fork="true">
732  
733 <      <jvmarg value="${bootclasspath.args}"/>
681 <      <jvmarg value="-server"/>
682 <      
733 >      <!-- <jvmarg value="-server"/> -->
734        <classpath refid="j1.classpath"/>
684
735        <formatter type="xml"/>
736  
737        <batchtest todir="${build.j1.dir}">
# Line 692 | Line 742
742  
743      </junit>
744  
695    <!-- Sets junit.report.format to frames if redirection is present,
696         otherwise sets it to noframes. -->
745      <available property="junit.report.format"
746                    value="frames"
747 <              classname="org.apache.xalan.lib.Redirect"
700 <    />
747 >              classname="org.apache.xalan.lib.Redirect"/>
748      <property name="junit.report.format" value="noframes"/>
749  
750      <junitreport todir="${build.j1.dir}">
# Line 714 | Line 761
761  
762    </target>
763  
764 <  
765 <  
764 >
765 >
766    <!-- C++ and JNI definitions and demos -->
767 <  
767 >
768    <target name="configure-cpp">
769  
770      <!-- Define tasks and types -->
771 <    
771 >
772      <path id="cpptasks.path">
773        <pathelement location="${lib.dir}/cpptasks.jar"/>
774      </path>
775      <taskdef resource="cpptasks.tasks" classpathref="cpptasks.path"/>
776      <typedef resource="cpptasks.types" classpathref="cpptasks.path"/>
777 <    
777 >
778      <!-- Set platform property for JNI includes -->
779 <    
779 >
780      <condition property="platform" value="linux">
781        <os name="Linux"/>
782      </condition>
# Line 739 | Line 786
786      <condition property="platform" value="solaris">
787        <os name="SunOS"/>
788      </condition>
789 <    
789 >
790    </target>
791 <  
792 <  
791 >
792 >
793    <target name="cppdemo" depends="configure-cpp">
794 <  
794 >
795      <mkdir dir="${build.dir}"/>
796 <    
796 >
797      <cc multithreaded="true"
798 <                 name="g++"
798 >                 name="g++"
799                 objdir="${build.dir}"
800                outfile="${build.dir}/CppDemo">
801        <fileset dir="${test.src.dir}" includes="CppDemo.cpp"/>
802        <libset libs="stdc++"/>
803      </cc>
804 <    
804 >
805      <exec executable="${build.dir}/CppDemo">
806        <arg line="count in word frequency of word in command line count"/>
807      </exec>
808 <    
808 >
809    </target>
810 <  
811 <  
810 >
811 >
812    <target name="jnidemo" depends="init, configure-compiler, configure-cpp">
813 <  
813 >
814      <mkdir dir="${build.testcases.dir}"/>
815 <    
815 >
816      <javac srcdir="${test.src.dir}"
817            destdir="${build.testcases.dir}"
818              debug="${build.debug}"
# Line 778 | Line 825
825        <classpath refid="test.classpath"/>
826        <include name="JniDemo.java"/>
827      </javac>
828 <    
828 >
829      <javah destdir="${build.testcases.dir}"
830        classpathref="test.classpath">
831        <class name="JniDemo"/>
832      </javah>
833 <    
833 >
834      <cc multithreaded="true"
835 <                 name="g++"
835 >                 name="g++"
836                 objdir="${build.dir}"
837                outfile="${build.dir}/JniDemo"
838                outtype="shared">
839 <              
839 >
840        <compiler>
841          <defineset>
842            <define name="__int64" value="long long"/>
# Line 798 | Line 845
845          <includepath location="${java.home}/../include/${platform}"/>
846          <compilerarg value="-mno-cygwin"/>
847        </compiler>
848 <      
848 >
849        <linker>
850          <linkerarg value="--add-stdcall-alias"/>
851        </linker>
852 <      
852 >
853        <includepath location="${build.testcases.dir}"/>
854 <      
854 >
855        <fileset dir="${test.src.dir}" includes="JniDemo.cpp"/>
856 <      
856 >
857        <libset libs="stdc++"/>
858 <      
858 >
859      </cc>
860 <    
860 >
861      <!-- Necessary if windows, harmless if not -->
862      <copy file="${build.dir}/libJniDemo.so" tofile="${build.dir}/JniDemo.dll"/>
863 <    
863 >
864      <java classname="JniDemo" fork="true">
865        <!-- Watch out: path separator hardwired to semicolon here! -->
866        <sysproperty key="java.library.path" path="${java.library.path};${build.dir}"/>
867        <classpath refid="test.classpath"/>
868        <arg line="count in word frequency of word in command line count"/>
869      </java>
870 <    
870 >
871    </target>
872  
873  
# Line 833 | Line 880
880    <property name="build.pretiger.dir"   location="${build.dir}/pretiger/classes"/>
881    <property name="pretiger.jar"         location="${build.lib.dir}/jsr166-pretiger.jar"/>
882    <property name="pretiger.sourcelevel" value="1.4"/>
883 <  
884 <  <target name="defang"
883 >
884 >  <target name="defang"
885         depends="init"
886     description="Generates pre-Tiger compatible source">
887 <  
887 >
888      <delete dir="${pretiger.src.dir}"/>
889      <mkdir dir="${pretiger.src.dir}"/>
890 <  
890 >
891      <exec executable="perl">
892        <arg file="etc/defang.pl"/>
893        <!-- <arg value="-v"/> -->
894        <arg value="-s"/> <arg file="${src.dir}"/>
895        <arg value="-t"/> <arg file="${pretiger.src.dir}"/>
896      </exec>
897 <    
897 >
898    </target>
899  
900    <target name="compile-pretiger"
# Line 870 | Line 917
917      </javac>
918  
919    </target>
920 <  
920 >
921    <target name="pretiger" depends="compile-pretiger">
922  
923      <mkdir dir="${build.lib.dir}"/>
924 <    
924 >
925      <jar destfile="${pretiger.jar}">
926        <fileset dir="${build.pretiger.dir}">
927        </fileset>
928      </jar>
929 <    
929 >
930    </target>
931  
932   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines