On Wed, 2008-07-02 at 16:14 +0200, Alexander Kitaev wrote:
> Please find script that reproduces the problem attached.
Tried with 1.5.0 and with 1.4.x branch. Both exhibit this behaviour.
I agree it's a bug.
- Julian
> #!/bin/sh
>
> # The next line is the only line you should need to adjust.
> SVNDIR=/home/builder/usr/svn/bin/
>
> SVN=${SVNDIR}/svn
> SVNSERVE=${SVNDIR}/svnserve
> SVNADMIN=${SVNDIR}/svnadmin
>
> URL=file:///`pwd`/repos
>
> rm -rf repos wc import-me
>
> ${SVNADMIN} create repos
>
> echo "### Making a Greek Tree for import..."
> mkdir import-me
> mkdir import-me/dir
> echo "This is the file 'file.txt'." > import-me/dir/file.txt
>
> (cd import-me; ${SVN} import -q -m "Initial import." ${URL})
>
> ${SVN} co ${URL} wc
> echo "This is the file 'file.txt'. File is modified." > wc/dir/file.txt
> ${SVN} ci wc -m "file modification"
> ${SVN} up -r1 wc
>
> ${SVN} del wc/dir/file.txt
> echo "### Directory should be empty:"
> ls -l wc/dir
> echo "### end of directory listing"
>
> ${SVN} up -r2 wc
>
> echo "### Directory should be empty:"
> ls -l wc/dir
> echo "### end of directory listing"
>
> echo "### Status output:"
> ${SVN} st -v wc
> echo "### end of status output"
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
> For additional commands, e-mail: dev-help_at_subversion.tigris.org
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-07-02 18:31:40 CEST