summaryrefslogtreecommitdiff
path: root/t/t5601-clone.sh
diff options
context:
space:
mode:
authorTaylor Blau <me@ttaylorr.com>2022-07-29 19:21:06 (GMT)
committerTaylor Blau <me@ttaylorr.com>2022-10-01 04:23:38 (GMT)
commit225d2d50ccef4baae410a96b9dc9e3978d164826 (patch)
treead10a20a2837176b6191621912ba0cdca5e84110 /t/t5601-clone.sh
parentac7e57fa288260341bdbd5e9abcdd24eaf214740 (diff)
downloadgit-225d2d50ccef4baae410a96b9dc9e3978d164826.zip
git-225d2d50ccef4baae410a96b9dc9e3978d164826.tar.gz
git-225d2d50ccef4baae410a96b9dc9e3978d164826.tar.bz2
t/t5NNN: allow local submodules
To prepare for the default value of `protocol.file.allow` to change to "user", ensure tests that rely on local submodules can initialize them over the file protocol. Tests that only need to interact with submodules in a limited capacity have individual Git commands annotated with the appropriate configuration via `-c`. Tests that interact with submodules a handful of times use `test_config_global` instead. Test scripts that rely on submodules throughout use a `git config --global` during a setup test towards the beginning of the script. Signed-off-by: Taylor Blau <me@ttaylorr.com>
Diffstat (limited to 't/t5601-clone.sh')
-rwxr-xr-xt/t5601-clone.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh
index 7df3c53..50d4821 100755
--- a/t/t5601-clone.sh
+++ b/t/t5601-clone.sh
@@ -738,6 +738,7 @@ test_expect_success 'batch missing blob request does not inadvertently try to fe
echo aa >server/a &&
echo bb >server/b &&
# Also add a gitlink pointing to an arbitrary repository
+ test_config_global protocol.file.allow always &&
git -C server submodule add "$(pwd)/repo_for_submodule" c &&
git -C server add a b c &&
git -C server commit -m x &&