* [PATCH] Failing test; renaming sections can lose assignments on the same line
@ 2009-07-08 20:40 Alex Vandiver
0 siblings, 0 replies; only message in thread
From: Alex Vandiver @ 2009-07-08 20:40 UTC (permalink / raw)
To: git
Signed-off-by: Alex Vandiver <alex@chmrr.net>
---
I noticed the following bug recently:
echo "[foo] x = 1" > testfile
git config --file=testfile --rename-section foo bar
cat testfile
# [bar]
This is at least a failing test, and I'll look at how complex the
fix is when I get a few spare tuits.
t/t1300-repo-config.sh | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh
index 43ea283..4d576c6 100755
--- a/t/t1300-repo-config.sh
+++ b/t/t1300-repo-config.sh
@@ -460,6 +460,27 @@ EOF
test_expect_success "rename succeeded" "test_cmp expect .git/config"
cat >> .git/config << EOF
+[branch "vier"] z = 1
+EOF
+
+test_expect_success "rename a section with a var on the same line" \
+ 'git config --rename-section branch.vier branch.zwei'
+
+cat > expect << EOF
+# Hallo
+ #Bello
+[branch "zwei"]
+ x = 1
+[branch "zwei"]
+ y = 1
+[branch "drei"]
+weird
+[branch "zwei"] z = 1
+EOF
+
+test_expect_success "rename succeeded" "test_cmp expect .git/config"
+
+cat >> .git/config << EOF
[branch "zwei"] a = 1 [branch "vier"]
EOF
--
1.6.3.3.473.gb74fc4.dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-07-08 21:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-08 20:40 [PATCH] Failing test; renaming sections can lose assignments on the same line Alex Vandiver
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).