summaryrefslogtreecommitdiff
path: root/t/t0001-init.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-03-20 23:17:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-03-21 21:27:52 (GMT)
commit3d06c5f19daf6710d99b6e4c7c0d097c8ce528fc (patch)
tree6fcb8a7987afbecdfe7648899f652e9d02e1022f /t/t0001-init.sh
parentf7e87141011fc55f8267ea76d3cc016ee87f9053 (diff)
downloadgit-3d06c5f19daf6710d99b6e4c7c0d097c8ce528fc.zip
git-3d06c5f19daf6710d99b6e4c7c0d097c8ce528fc.tar.gz
git-3d06c5f19daf6710d99b6e4c7c0d097c8ce528fc.tar.bz2
t0001: make symlink reinit test more careful
In the final test of t0001, we have a repo whose .git is a symlink to a directory "here", and we use "--separate-git-dir" to migrate that to a .git file pointing to a different directory. We check that the data is migrated to the new directory and that .git looks like a git-file. We also check that "here" is not a directory, which is slightly misleading. It should not be a directory, but neither should it be gone. It is the actual resting place of the git-file, and .git remains a symlink to it. Let's check that more explicitly, both to make our test more robust, and to make further cleanups in this area more obvious. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0001-init.sh')
-rwxr-xr-xt/t0001-init.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t0001-init.sh b/t/t0001-init.sh
index 9b05fdf..5245711 100755
--- a/t/t0001-init.sh
+++ b/t/t0001-init.sh
@@ -402,8 +402,8 @@ test_expect_success SYMLINKS 're-init to move gitdir symlink' '
) &&
echo "gitdir: `pwd`/realgitdir" >expected &&
test_cmp expected newdir/.git &&
- test -d realgitdir/refs &&
- ! test -d newdir/here
+ test_cmp expected newdir/here &&
+ test -d realgitdir/refs
'
test_done