Changeset 149 for antsvk

Show
Ignore:
Timestamp:
02/18/06 19:32:12 (5 years ago)
Author:
anonymous
Message:

r1351@wanderer: kama | 2006-02-15 18:04:25 +0100

  • Update TeX Doku
  • Verbose output added for svk mkdir command.
  • Testsuite Script enhanced.
  • Ant Testsuite enhanced.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • antsvk/trunk/doc/doc.tex

    r31 r149  
    1515programm which is written by .... and can be purchaces at \url{http://svk.elixus.org} 
    1616\end{abstract} 
    17 \section{Instalation} 
     17\section{Installation} 
    1818If you like to use SVK in relation with Ant you have to download the distribution, which has 
    1919already be done, cause you are reading a part of it. 
  • antsvk/trunk/src/com/soebes/antsvk/cli/command/MkdirCommand.java

    r53 r149  
    133133                cmd.createArgument().setValue(MK_OPTION_DIRECT); 
    134134        } 
     135        getProject().log("checkOptions CmdLineA:" + cmd.toString(), Project.MSG_VERBOSE); 
    135136        if (hasPath()) { 
    136137                cmd.createArgument().setValue(getPath()); 
    137138        } 
     139        getProject().log("checkOptions CmdLineB:" + cmd.toString(), Project.MSG_VERBOSE); 
    138140    } 
    139141 
  • antsvk/trunk/testsuite.sh

    r122 r149  
    9999doCommand "svn copy $REPOSREMOTE/antsvk/trunk $REPOSREMOTE/antsvk/branches/RF1 -m"- Branch RF1"" 
    100100# 
     101# 
    101102doCommand "svn list $REPOSREMOTE" 
    102103# 
     
    108109# Create mirror of Subversion... 
    109110doCommand "svk mirror $REPOSREMOTE/antsvk/trunk //antsvk/trunk" 
    110 doCommand "svk push -f $REPOSREMOTE/antsvk/trunk $REPOSLOCAL/antsvkpush" 
     111#doCommand "svk push -f $REPOSREMOTE/antsvk/trunk $REPOSLOCAL/antsvkpush" 
    111112# 
    112113doCommand "svk mirror --list" 
    113114# 
    114115# 
    115 doCommand "svk checkout //antsvk/trunk $TESTSUITEDIR/antsvk" 
     116#doCommand "svk checkout //antsvk/trunk $TESTSUITEDIR/antsvk" 
    116117# 
    117118echo "-------------------------------------------------------------------------" 
     
    127128export REPOSLOCAL=$REPOSLOCAL 
    128129export REPOSREMOTE=$REPOSREMOTE 
    129 ant -f testsuite.xml  testsuite 
     130ant -v -f testsuite.xml  testsuite 
    130131# 
    131132# Just wait a little bit...to calm down everything... 
  • antsvk/trunk/testsuite.xml

    r107 r149  
    140140                <svkCheckout list="true"/> 
    141141        </target> 
    142          
     142 
    143143        <target name="svkCommit"> 
    144144                <svkCommit checkonly="true"/> 
     
    146146        </target> 
    147147 
    148         <target name="svkCopy"> 
    149                 <svkCopy/> 
     148        <target name="svkCopy" description="Test for doing some branching"> 
     149                <svkCopy path="//antsvk/trunk" depotpath="${env.REPOSLOCAL}/antsvk/branches/LF1" message="- Branch LF1"/> 
     150                <svkCopy path="//antsvk/trunk" depotpath="${env.REPOSREMOTE}/antsvk/branches/RF1" message="- Branch RF1"/> 
    150151        </target> 
    151152 
     
    153154                <svkList depotpath="//" verbose="true"/> 
    154155        </target> 
    155          
     156 
    156157        <target name="svkLog"> 
    157158                <svkLog depotpath="//" verbose="true"/> 
     
    159160 
    160161        <target name="svkMirror"> 
    161                 <echo>List the mirrored parts</echo> 
     162                <echo>--- (1) List the mirrored parts ---</echo> 
    162163                <svkMirror list="true"/> 
    163164                <echo>Mirror ${env.REPOSLOCAL} to //ReposLocal/trunk</echo> 
    164165                <svkMirror url="${env.REPOSLOCAL}" depotpath="//ReposLocal/trunk"/> 
    165                 <echo>List the mirrored parts</echo> 
     166                <echo>--- (2) List the mirrored parts ---</echo> 
    166167                <svkMirror list="true"/> 
    167168        </target> 
     
    170171                <svkMkdir path="//mkdir1" message="- Nachricht"/> 
    171172                <svkMkdir path="//mkdir2" messagefile="CommitMessageFile"/> 
     173                <svkMkdir path="//ReposLocal/local" message="- L Local"/> 
    172174        </target> 
    173175 
     
    175177                <svkMove list="true"/> 
    176178        </target> 
    177  
    178179 
    179180        <target name="svkStatus"> 
     
    204205        </target> 
    205206 
    206         <target name="testsuite" depends="useTask,svkLog,svkMkdir,svkMirror"> 
     207        <target name="testsuite" depends="useTask,svkLog,svkMkdir,svkCopy,svkMirror"> 
    207208        </target> 
    208209</project>