diff options
author | Jonas Fonseca <fonseca@diku.dk> | 2006-03-06 06:23:30 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-07 17:06:10 -0800 |
commit | f067a13745fbeae1aa357876348a00e5edd0a629 (patch) | |
tree | 2fb613fd217a735dd5497ac7e34dbe532e24332c /t | |
parent | aa1dbc9897822c8acb284b35c40da60f3debca91 (diff) | |
download | git-f067a13745fbeae1aa357876348a00e5edd0a629.tar.gz git-f067a13745fbeae1aa357876348a00e5edd0a629.tar.xz |
repo-config: give value_ a sane default so regexec won't segfault
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/t1300-repo-config.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index 207dd3de6..ab4dd5c4c 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -247,5 +247,13 @@ EOF test_expect_success 'hierarchical section value' 'cmp .git/config expect' +cat > .git/config << EOF +[novalue] + variable +EOF + +test_expect_success 'get variable with no value' \ + 'git-repo-config --get novalue.variable ^$' + test_done |