diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-11-20 10:40:46 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-20 10:40:46 -0800 |
commit | 0f76f976762d6a15a4af75db56208c8065492020 (patch) | |
tree | e77862b1d6d5f971b9bf9230117e066fd0618298 /t | |
parent | Merge branch 'jl/submodule-rm' (diff) | |
parent | config: don't segfault when given --path with a missing value (diff) | |
download | tgif-0f76f976762d6a15a4af75db56208c8065492020.tar.xz |
Merge branch 'cn/config-missing-path'
"git config --path $key" segfaulted on "[section] key" (a boolean
"true" spelled without "=", not "[section] key = true").
* cn/config-missing-path:
config: don't segfault when given --path with a missing value
Diffstat (limited to 't')
-rwxr-xr-x | t/t1300-repo-config.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index e127f35db9..7c4c372e37 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -803,6 +803,11 @@ test_expect_success NOT_MINGW 'get --path copes with unset $HOME' ' test_cmp expect result ' +test_expect_success 'get --path barfs on boolean variable' ' + echo "[path]bool" >.git/config && + test_must_fail git config --get --path path.bool +' + cat > expect << EOF [quote] leading = " test" |