diff options
author | Taylor Blau <me@ttaylorr.com> | 2022-09-30 22:48:56 +0200 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2022-10-01 06:27:18 +0200 |
commit | 067aa8fb41d09814d26f82515573b067feba87ba (patch) | |
tree | cba1fc3b72ce4eceeb17f4835be65e35ff32466c /t/t2080-parallel-checkout-basics.sh | |
parent | t1092: prepare for changing protocol.file.allow (diff) | |
download | git-067aa8fb41d09814d26f82515573b067feba87ba.tar.xz git-067aa8fb41d09814d26f82515573b067feba87ba.zip |
t2080: prepare for changing protocol.file.allow
Explicitly cloning over the "file://" protocol in t1092 in preparation
for merging a security release which will change the default value of
this configuration to be "user".
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Diffstat (limited to '')
-rwxr-xr-x | t/t2080-parallel-checkout-basics.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/t2080-parallel-checkout-basics.sh b/t/t2080-parallel-checkout-basics.sh index 3e0f8c675f..393ba3545e 100755 --- a/t/t2080-parallel-checkout-basics.sh +++ b/t/t2080-parallel-checkout-basics.sh @@ -41,6 +41,8 @@ TEST_NO_CREATE_REPO=1 # - m/m (file) # test_expect_success 'setup repo for checkout with various types of changes' ' + test_config_global protocol.file.allow always && + git init sub && ( cd sub && @@ -140,6 +142,7 @@ do esac test_expect_success "$mode checkout on clone" ' + test_config_global protocol.file.allow always && repo=various_${mode}_clone && set_checkout_config $workers $threshold && test_checkout_workers $expected_workers \ |