You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@subversion.apache.org by "Orivej Desh (JIRA)" <ji...@apache.org> on 2017/04/06 03:23:42 UTC

[jira] [Updated] (SVN-4677) svn up fails after a file is added, moved, deleted, and replaced by a directory with the same name

     [ https://issues.apache.org/jira/browse/SVN-4677?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Orivej Desh updated SVN-4677:
-----------------------------
    Description: 
This bug was introduced in http://svn.apache.org/viewvc?view=revision&revision=1586953 , is present in all releases since 1.9.0, and can be fixed by reverting that commit. The following script reproduces it:

{code}
rm -rf repo repo1 repo2

svnadmin create repo
svn co "file://$(pwd)/repo" repo1

cd repo1
mkdir a
svn add a
svn commit -m 1
svn up

echo fa > a/fa
svn add a/fa
svn commit -m 2
svn up

svn mv a b
svn commit -m 3
svn up

svn rm b/fa
svn commit -m 4
svn up

mkdir b/fa/
touch b/fa/fb
svn add b/fa
svn commit -m 5
svn up

svn rm b/fa/fb
svn commit -m 6
svn up

cd ..
svn co "file://$(pwd)/repo" repo2 -r5
cd repo2
svn up
{code}

{{svn up}} fails with

{code}
Updating '.':
svn: E160016: Failure opening '/b/fa/fb'
svn: E160016: '/b/fa' is not a directory in filesystem '1d2dc934-16b4-452c-a607-a6080764124e'
{code}


  was:
This bug was introduced in http://svn.apache.org/viewvc?view=revision&revision=1586953 , is present in all releases since 1.9.0, and can be fixed by reverting that commit. It could be reproduced by the following script:

{code}
rm -rf repo repo1 repo2

svnadmin create repo
svn co "file://$(pwd)/repo" repo1

cd repo1
mkdir a
svn add a
svn commit -m 1
svn up

echo fa > a/fa
svn add a/fa
svn commit -m 2
svn up

svn mv a b
svn commit -m 3
svn up

svn rm b/fa
svn commit -m 4
svn up

mkdir b/fa/
touch b/fa/fb
svn add b/fa
svn commit -m 5
svn up

svn rm b/fa/fb
svn commit -m 6
svn up

cd ..
svn co "file://$(pwd)/repo" repo2 -r5
cd repo2
svn up
{code}

{{svn up}} fails with

{code}
Updating '.':
svn: E160016: Failure opening '/b/fa/fb'
svn: E160016: '/b/fa' is not a directory in filesystem '1d2dc934-16b4-452c-a607-a6080764124e'
{code}



> svn up fails after a file is added, moved, deleted, and replaced by a directory with the same name
> --------------------------------------------------------------------------------------------------
>
>                 Key: SVN-4677
>                 URL: https://issues.apache.org/jira/browse/SVN-4677
>             Project: Subversion
>          Issue Type: Bug
>          Components: libsvn_fs_fs
>    Affects Versions: 1.9.x, trunk
>            Reporter: Orivej Desh
>
> This bug was introduced in http://svn.apache.org/viewvc?view=revision&revision=1586953 , is present in all releases since 1.9.0, and can be fixed by reverting that commit. The following script reproduces it:
> {code}
> rm -rf repo repo1 repo2
> svnadmin create repo
> svn co "file://$(pwd)/repo" repo1
> cd repo1
> mkdir a
> svn add a
> svn commit -m 1
> svn up
> echo fa > a/fa
> svn add a/fa
> svn commit -m 2
> svn up
> svn mv a b
> svn commit -m 3
> svn up
> svn rm b/fa
> svn commit -m 4
> svn up
> mkdir b/fa/
> touch b/fa/fb
> svn add b/fa
> svn commit -m 5
> svn up
> svn rm b/fa/fb
> svn commit -m 6
> svn up
> cd ..
> svn co "file://$(pwd)/repo" repo2 -r5
> cd repo2
> svn up
> {code}
> {{svn up}} fails with
> {code}
> Updating '.':
> svn: E160016: Failure opening '/b/fa/fb'
> svn: E160016: '/b/fa' is not a directory in filesystem '1d2dc934-16b4-452c-a607-a6080764124e'
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)