Re: svn commit: r33855 - in branches/tree-conflicts-notify/subversion: include libsvn_client libsvn_wc svn tests/cmdline tests/cmdline/svntest
From: Neels J. Hofmeyr <neels_at_elego.de>
Date: Thu, 23 Oct 2008 16:01:41 +0200
Greg Stein wrote:
Hm, interesting -- I can't reproduce it when running a standalone recipe on
cd ~/trunk/subversion/tests/cmdline
, the log is empty, although it should show the original creation log of the
cd ~/trunk
, the log message shows correctly. This only happens with log -r <rev>, not
Might there be something wrong with the information stored in our svn repos
I'm pretty sure that the results of above example must be wrong. It persists
~Neels
-- Neels Hofmeyr -- elego Software Solutions GmbH Gustav-Meyer-Allee 25 / Gebäude 12, 13355 Berlin, Germany phone: +49 30 23458696 mobile: +49 177 2345869 fax: +49 30 23458695 http://www.elegosoft.com | Geschäftsführer: Olaf Wagner | Sitz: Berlin Handelsreg: Amtsgericht Charlottenburg HRB 77719 | USt-IdNr: DE163214194
#!/bin/sh
# The next line is the only line you should need to adjust.
## GENERIC PREPARATIONS
SVN=${SVNDIR}/subversion/svn/svn
# use my local way if my script is there (neels).
${SVN} --version
# Select an access method. If svn://, the svnserve setup is
rm -rf repos wc
${SVNADMIN} create repos
# These are for svnserve only.
# The server will only be contacted if $URL is svn://foo, of course.
${SVN} co -q ${URL} wc
cd wc
## ACTUAL TEST
echo "===== creating rev 1"
${SVN} ci -m "This is the log message I want to see."
echo "===== moving file"
${SVN} mv original_dir/original_file moved_to_dir/moved_file
echo "===== checking logs"
## ACTUAL TEST ENDS
./k
|
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.