comparison tests/fixtures/empty_dir_in_trunk_not_repo_root.sh @ 268:6ec5b5fc5b4d

Added a test case for directory-add behavior when repo root is not project root.
author Augie Fackler <durin42@gmail.com>
date Tue, 14 Apr 2009 22:44:19 -0500
parents
children
comparison
equal deleted inserted replaced
267:f000b2392fc2 268:6ec5b5fc5b4d
1 #!/bin/sh
2 mkdir temp || exit 1
3 cd temp
4 svnadmin create repo
5 svn co file://`pwd`/repo wc
6 pushd wc
7 mkdir -p project/trunk
8 svn add project
9 svn ci -m 'trunk'
10 cd project/trunk
11 echo a > a
12 mkdir narf
13 svn add a narf
14 svn ci -m 'file and empty dir'
15 popd
16 svnadmin dump repo > ../empty_dir_in_trunk_not_repo_root.svndump
17 echo 'dump in empty_dir_in_trunk_not_repo_root.svndump'
18 echo 'you can probably delete temp now'