diff options
| author | Taylor Blau <me@ttaylorr.com> | 2022-07-29 15:20:43 -0400 |
|---|---|---|
| committer | Taylor Blau <me@ttaylorr.com> | 2022-10-01 00:23:38 -0400 |
| commit | ac7e57fa288260341bdbd5e9abcdd24eaf214740 (patch) | |
| tree | b52e3ba0d6f5e984b7fe3df7c66cd696575cf10a /t/t4059-diff-submodule-not-initialized.sh | |
| parent | t/t3NNN: allow local submodules (diff) | |
| download | git-ac7e57fa288260341bdbd5e9abcdd24eaf214740.tar.gz git-ac7e57fa288260341bdbd5e9abcdd24eaf214740.zip | |
t/t4NNN: 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/t4059-diff-submodule-not-initialized.sh')
| -rwxr-xr-x | t/t4059-diff-submodule-not-initialized.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4059-diff-submodule-not-initialized.sh b/t/t4059-diff-submodule-not-initialized.sh index 49bca7b48d..d489230df8 100755 --- a/t/t4059-diff-submodule-not-initialized.sh +++ b/t/t4059-diff-submodule-not-initialized.sh @@ -49,7 +49,7 @@ test_expect_success 'setup - submodules' ' ' test_expect_success 'setup - git submodule add' ' - git submodule add ./sm2 sm1 && + git -c protocol.file.allow=always submodule add ./sm2 sm1 && commit_file sm1 .gitmodules && git diff-tree -p --no-commit-id --submodule=log HEAD -- sm1 >actual && cat >expected <<-EOF && |
