Junio C Hamano <gitster@xxxxxxxxx> writes: > Brian Charles Gernhardt <gernhard@xxxxxxxxxxxxxxxx> writes: > >> Another problem caused by BSD v GNU sed, I think. >> >> git cat-file blob HEAD:x | >> sed "/preline/a\ >> ADDED" >x && > > Actually, I think what is happening is that inside "", the backslash > at the end of line is eaten by the shell together with that end of > line, so it is not BSD vs GNU, but it simply is that my quoting was > wrong. > > This (disregarding the previous "TARGET" patch) may be a smaller fix. I'll find a brown paper bag big enough to hide in. Please disregard it. -- >8 -- Subject: [PATCH] t4055: avoid use of sed 'a' command The 'a', 'i' and 'c' commands take a literal text to be added followed by backslash, but then in the source we cannot indent the literal text which makes it ugly. We need to also remember to double the backslash inside double quotes. Avoid these issues altogether by having an extra line in a template file and generate test vectors by deleting the line or replacing the line and not using the 'a' command. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- t/t4055-diff-context.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/t/t4055-diff-context.sh b/t/t4055-diff-context.sh index 3527686..97172b4 100755 --- a/t/t4055-diff-context.sh +++ b/t/t4055-diff-context.sh @@ -8,7 +8,7 @@ test_description='diff.context configuration' . ./test-lib.sh test_expect_success 'setup' ' - cat >x <<-\EOF && + cat >template <<-\EOF && firstline b c @@ -16,6 +16,7 @@ test_expect_success 'setup' ' e f preline + TARGET postline i j @@ -24,17 +25,15 @@ test_expect_success 'setup' ' m n EOF + sed "/TARGET/d" >x <template && git update-index --add x && git commit -m initial && - git cat-file blob HEAD:x | - sed "/preline/a\ - ADDED" >x && + sed "s/TARGET/ADDED/" >x <template && git update-index --add x && git commit -m next && - git cat-file blob HEAD:x | - sed s/ADDED/MODIFIED/ >x + sed "s/TARGET/MODIFIED/" >x <template ' test_expect_success 'the default number of context lines is 3' ' -- 1.8.0.rc0.45.g7ce8dc5 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html