From: Johannes Schindelin Date: Mon, 13 Mar 2017 20:11:26 +0000 (+0100) Subject: t1309: document cases where we would want early config not to die() X-Git-Tag: v2.13.0-rc0~100^2~1 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=751d3b9415fc08c8cc926f55646b735b0237fd4a;p=git-core%2Fgit.git t1309: document cases where we would want early config not to die() Jeff King came up with a couple examples that demonstrate how the new read_early_config() that looks harder for the current .git/ directory could die() in an undesirable way. Let's add those cases to the test script, to document what we would like to happen when early config encounters problems. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/t/t1309-early-config.sh b/t/t1309-early-config.sh index 0c55dee51..b97357b8a 100755 --- a/t/t1309-early-config.sh +++ b/t/t1309-early-config.sh @@ -47,4 +47,28 @@ test_expect_success 'ceiling #2' ' test xdg = "$(cat output)" ' +test_with_config () { + rm -rf throwaway && + git init throwaway && + ( + cd throwaway && + echo "$*" >.git/config && + test-config read_early_config early.config + ) +} + +test_expect_success 'ignore .git/ with incompatible repository version' ' + test_with_config "[core]repositoryformatversion = 999999" 2>err && + grep "warning:.* Expected git repo version <= [1-9]" err +' + +test_expect_failure 'ignore .git/ with invalid repository version' ' + test_with_config "[core]repositoryformatversion = invalid" +' + + +test_expect_failure 'ignore .git/ with invalid config' ' + test_with_config "[" +' + test_done