diff options
Diffstat (limited to 't/t2408-worktree-relative.sh')
-rwxr-xr-x | t/t2408-worktree-relative.sh | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/t/t2408-worktree-relative.sh b/t/t2408-worktree-relative.sh deleted file mode 100755 index d51cc8c5ab..0000000000 --- a/t/t2408-worktree-relative.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -test_description='test worktrees linked with relative paths' - -. ./test-lib.sh - -test_expect_success 'links worktrees with relative paths' ' - test_when_finished rm -rf repo && - git init repo && - ( - cd repo && - test_commit initial && - git worktree add wt1 && - echo "../../../wt1/.git" >expected_gitdir && - cat .git/worktrees/wt1/gitdir >actual_gitdir && - echo "gitdir: ../.git/worktrees/wt1" >expected_git && - cat wt1/.git >actual_git && - test_cmp expected_gitdir actual_gitdir && - test_cmp expected_git actual_git - ) -' - -test_expect_success 'move repo without breaking relative internal links' ' - test_when_finished rm -rf repo moved && - git init repo && - ( - cd repo && - test_commit initial && - git worktree add wt1 && - cd .. && - mv repo moved && - cd moved/wt1 && - git status >out 2>err && - test_must_be_empty err - ) -' - -test_done |