range-diff: allow to diff files regardless of submodule config
[gitweb.git] / t / t2025-worktree-add.sh
index 67fccc6591da4397d8880c1dc3cc3af13c639357..286bba35d8ae06f97cbf59263cd472975036deaa 100755 (executable)
@@ -556,7 +556,18 @@ test_expect_success '"add" an existing but missing worktree' '
        git worktree add --detach pneu &&
        test_must_fail git worktree add --detach pneu &&
        rm -fr pneu &&
-       test_must_fail git worktree add --detach pneu
+       test_must_fail git worktree add --detach pneu &&
+       git worktree add --force --detach pneu
+'
+
+test_expect_success '"add" an existing locked but missing worktree' '
+       git worktree add --detach gnoo &&
+       git worktree lock gnoo &&
+       test_when_finished "git worktree unlock gnoo || :" &&
+       rm -fr gnoo &&
+       test_must_fail git worktree add --detach gnoo &&
+       test_must_fail git worktree add --force --detach gnoo &&
+       git worktree add --force --force --detach gnoo
 '
 
 test_done