aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-05-20 19:58:03 -0700
committerJunio C Hamano <junkio@cox.net>2007-05-20 19:58:03 -0700
commit738a1154db190c75a7454da85d85be68ad7db065 (patch)
tree4abf7c8e14e98a6c0301cb34ad5acd8b42dcfe14 /t
parent45bde46bfb9cbc5565f9fc6caa819333578c53e1 (diff)
parent7df6ddf51ea71d81874ecfa34f670f50a3d45103 (diff)
downloadgit-738a1154db190c75a7454da85d85be68ad7db065.tar.gz
git-738a1154db190c75a7454da85d85be68ad7db065.tar.xz
Merge branch 'maint'
* maint: annotate: make it work from subdirectories. git-config: Correct asciidoc documentation for --int/--bool t1300: Add tests for git-config --bool --get unpack-trees.c: verify_uptodate: remove dead code Use PATH_MAX instead of TEMPFILE_PATH_LEN branch: fix segfault when resolving an invalid HEAD
Diffstat (limited to 't')
-rwxr-xr-xt/t1300-repo-config.sh34
1 files changed, 34 insertions, 0 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh
index a1d777ca8..3f3fd2d7f 100755
--- a/t/t1300-repo-config.sh
+++ b/t/t1300-repo-config.sh
@@ -436,6 +436,40 @@ test_expect_success numbers '
test z1048576 = "z$m"
'
+cat > expect << EOF
+true
+false
+true
+false
+true
+false
+true
+false
+EOF
+
+test_expect_success bool '
+
+ git-config bool.true1 01 &&
+ git-config bool.true2 -1 &&
+ git-config bool.true3 YeS &&
+ git-config bool.true4 true &&
+ git-config bool.false1 000 &&
+ git-config bool.false2 "" &&
+ git-config bool.false3 nO &&
+ git-config bool.false4 FALSE &&
+ rm -f result &&
+ for i in 1 2 3 4
+ do
+ git-config --bool --get bool.true$i >>result
+ git-config --bool --get bool.false$i >>result
+ done &&
+ cmp expect result'
+
+test_expect_failure 'invalid bool' '
+
+ git-config bool.nobool foobar &&
+ git-config --bool --get bool.nobool'
+
rm .git/config
git-config quote.leading " test"