- Timestamp:
- 02/18/06 19:32:12 (5 years ago)
- Files:
-
- antsvk/trunk/doc/doc.tex (modified) (1 diff)
- antsvk/trunk/src/com/soebes/antsvk/cli/command/MkdirCommand.java (modified) (1 diff)
- antsvk/trunk/testsuite.sh (modified) (3 diffs)
- antsvk/trunk/testsuite.xml (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
antsvk/trunk/doc/doc.tex
r31 r149 15 15 programm which is written by .... and can be purchaces at \url{http://svk.elixus.org} 16 16 \end{abstract} 17 \section{Instal ation}17 \section{Installation} 18 18 If you like to use SVK in relation with Ant you have to download the distribution, which has 19 19 already be done, cause you are reading a part of it. antsvk/trunk/src/com/soebes/antsvk/cli/command/MkdirCommand.java
r53 r149 133 133 cmd.createArgument().setValue(MK_OPTION_DIRECT); 134 134 } 135 getProject().log("checkOptions CmdLineA:" + cmd.toString(), Project.MSG_VERBOSE); 135 136 if (hasPath()) { 136 137 cmd.createArgument().setValue(getPath()); 137 138 } 139 getProject().log("checkOptions CmdLineB:" + cmd.toString(), Project.MSG_VERBOSE); 138 140 } 139 141 antsvk/trunk/testsuite.sh
r122 r149 99 99 doCommand "svn copy $REPOSREMOTE/antsvk/trunk $REPOSREMOTE/antsvk/branches/RF1 -m"- Branch RF1"" 100 100 # 101 # 101 102 doCommand "svn list $REPOSREMOTE" 102 103 # … … 108 109 # Create mirror of Subversion... 109 110 doCommand "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" 111 112 # 112 113 doCommand "svk mirror --list" 113 114 # 114 115 # 115 doCommand "svk checkout //antsvk/trunk $TESTSUITEDIR/antsvk"116 #doCommand "svk checkout //antsvk/trunk $TESTSUITEDIR/antsvk" 116 117 # 117 118 echo "-------------------------------------------------------------------------" … … 127 128 export REPOSLOCAL=$REPOSLOCAL 128 129 export REPOSREMOTE=$REPOSREMOTE 129 ant - f testsuite.xml testsuite130 ant -v -f testsuite.xml testsuite 130 131 # 131 132 # Just wait a little bit...to calm down everything... antsvk/trunk/testsuite.xml
r107 r149 140 140 <svkCheckout list="true"/> 141 141 </target> 142 142 143 143 <target name="svkCommit"> 144 144 <svkCommit checkonly="true"/> … … 146 146 </target> 147 147 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"/> 150 151 </target> 151 152 … … 153 154 <svkList depotpath="//" verbose="true"/> 154 155 </target> 155 156 156 157 <target name="svkLog"> 157 158 <svkLog depotpath="//" verbose="true"/> … … 159 160 160 161 <target name="svkMirror"> 161 <echo> List the mirrored parts</echo>162 <echo>--- (1) List the mirrored parts ---</echo> 162 163 <svkMirror list="true"/> 163 164 <echo>Mirror ${env.REPOSLOCAL} to //ReposLocal/trunk</echo> 164 165 <svkMirror url="${env.REPOSLOCAL}" depotpath="//ReposLocal/trunk"/> 165 <echo> List the mirrored parts</echo>166 <echo>--- (2) List the mirrored parts ---</echo> 166 167 <svkMirror list="true"/> 167 168 </target> … … 170 171 <svkMkdir path="//mkdir1" message="- Nachricht"/> 171 172 <svkMkdir path="//mkdir2" messagefile="CommitMessageFile"/> 173 <svkMkdir path="//ReposLocal/local" message="- L Local"/> 172 174 </target> 173 175 … … 175 177 <svkMove list="true"/> 176 178 </target> 177 178 179 179 180 <target name="svkStatus"> … … 204 205 </target> 205 206 206 <target name="testsuite" depends="useTask,svkLog,svkMkdir,svk Mirror">207 <target name="testsuite" depends="useTask,svkLog,svkMkdir,svkCopy,svkMirror"> 207 208 </target> 208 209 </project>
