The "dirlinks" and "growing" repositories should not outlive the
tests that use them.
Signed-off-by: David Aguilar <redacted>
---
t/t7800-difftool.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/t/t7800-difftool.sh b/t/t7800-difftool.sh
index a173f564bc..a923f193da 100755
--- a/t/t7800-difftool.sh
+++ b/t/t7800-difftool.sh
@@ -414,6 +414,7 @@ test_expect_success 'setup change in subdirectory' '
test_expect_success 'difftool -d with growing paths' '
a=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa &&
git init growing &&
+ test_when_finished rm -rf growing &&
(
cd growing &&
echo "test -f \"\$2/b\"" | write_script .git/test-for-b.sh &&
@@ -646,6 +647,7 @@ test_expect_success 'difftool properly honors gitlink and core.worktree' '
test_expect_success SYMLINKS 'difftool --dir-diff symlinked directories' '
test_when_finished git reset --hard &&
git init dirlinks &&
+ test_when_finished rm -rf dirlinks &&
(
cd dirlinks &&
git config diff.tool checktrees &&
--
2.30.1 (Apple Git-130)