You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by do...@apache.org on 2001/06/02 17:09:19 UTC

cvs commit: jakarta-ant/proposal/myrmidon/src/make sample.ant

donaldp     01/06/02 08:09:19

  Modified:    proposal/myrmidon/src/make sample.ant
  Log:
  Update sample
  
  Revision  Changes    Path
  1.2       +6 -4      jakarta-ant/proposal/myrmidon/src/make/sample.ant
  
  Index: sample.ant
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/src/make/sample.ant,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- sample.ant	2001/02/20 06:12:01	1.1
  +++ sample.ant	2001/06/02 15:09:18	1.2
  @@ -20,11 +20,11 @@
   
     <target name="main" depends="property-test" />
   
  -  <target name="no-test-target" unless="do-tests">
  +  <target name="no-test-target" if="no-do-tests">
       <echo message="No tests done here"/>
     </target>
   
  -  <target name="test-target" depends="no-test-target" if="do-tests">
  +  <target name="test-target" depends="no-test-target" unless="no-do-tests">
   
       <echo message="Tests away"/>
   
  @@ -45,11 +45,13 @@
        />
   
       <sub-elements-test>
  +<!--
         <create-beep message="Evaluation of ant.install.dir=${ant.install.dir}" />
  -      <add-beep message="Evaluation of ant.install.lib=${ant.install.lib}" />
  +          <add-beep message="Evaluation of ant.install.lib=${ant.install.lib}" />
  +-->
       </sub-elements-test>
   
  -    <conf-test message="Test of configuration=${ant.install.lib}" />
  +<!--    <conf-test message="Test of configuration=${ant.install.lib}" /> -->
       
       <content-test>123</content-test>