git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Test the interaction of --bool and --get-regexp on a key with no explicit value
@ 2010-08-26 17:45 Alex Vandiver
  2010-08-26 20:49 ` [PATCH] config: Print the delimeter of intuited --bool values under --get-regexp alex
  2010-08-27  3:15 ` [PATCH] Test the interaction of --bool and --get-regexp on a key with no explicit value Jonathan Nieder
  0 siblings, 2 replies; 4+ messages in thread
From: Alex Vandiver @ 2010-08-26 17:45 UTC (permalink / raw)
  To: git

Signed-off-by: Alex Vandiver <alex@chmrr.net>
---

This test currently fails -- I don't have time to track down the fix,
but I figured that at least I could provide a failing test.  Note that
--null isn't necessary for the failure; without it, one gets
"section.sub=section.val5true", with no spacing between the key and
value.

 t/t1300-repo-config.sh |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh
index 074f2f2..147e0e6 100755
--- a/t/t1300-repo-config.sh
+++ b/t/t1300-repo-config.sh
@@ -816,6 +816,16 @@ echo >>result
 
 test_expect_success '--null --get-regexp' 'cmp result expect'
 
+cat > expect <<\EOF
+section.sub=section.val5
+trueQ
+EOF
+
+git config --null --bool --get-regexp 'val5' | perl -pe 'y/\000/Q/' > result
+echo >>result
+
+test_expect_success '--null --get-regexp --bool' 'cmp result expect'
+
 test_expect_success 'inner whitespace kept verbatim' '
 	git config section.val "foo 	  bar" &&
 	test "z$(git config section.val)" = "zfoo 	  bar"
-- 
1.7.2.2.458.g8d9c8

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-08-27  3:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-26 17:45 [PATCH] Test the interaction of --bool and --get-regexp on a key with no explicit value Alex Vandiver
2010-08-26 20:49 ` [PATCH] config: Print the delimeter of intuited --bool values under --get-regexp alex
2010-08-27  3:17   ` Jonathan Nieder
2010-08-27  3:15 ` [PATCH] Test the interaction of --bool and --get-regexp on a key with no explicit value Jonathan Nieder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).