dlr         02/02/18 19:31:21

  Modified:    .        build.xml
  Log:
  o Added prepare dependency before check.junit so that detection of
  JUnit will occur properly.
  
  o "test" target now runs run-time tests as well as unit tests.
  
  Revision  Changes    Path
  1.9       +2 -8      xml-rpc/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-rpc/build.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -u -r1.8 -r1.9
  --- build.xml 19 Feb 2002 03:19:40 -0000      1.8
  +++ build.xml 19 Feb 2002 03:31:21 -0000      1.9
  @@ -213,7 +213,7 @@
     <!-- ================================================================== -->
   
     <target name="compile-tests"
  -    depends="check.junit,compile"
  +    depends="prepare,check.junit,compile"
       description="Compiles testing source code">
       
       <mkdir dir="${build.test.dest}"/>
  @@ -236,7 +236,7 @@
   
     <target name="test"
       depends="compile-tests"
  -    description="Runs unit tests">
  +    description="Runs unit and run-time tests">
       
       <echo>
         Running all JUnit tests
  @@ -260,12 +260,6 @@
         </batchtest>
       </junit>
     </target>
  -
  -  <!--
  -  <target name="rttest"
  -    description="Runs run-time tests">
  -  </target>
  -  -->
   
     <!-- ================================================================== -->
     <!-- D O C S                                                            -->
  
  
  


Reply via email to