sed: fix very obscure case of escaped newline in sed command

(needed for uclibc build, btw). Add testcase for it.
This commit is contained in:
Denis Vlasenko
2007-03-16 23:36:58 +00:00
parent 486e7ca6b7
commit 4b0bb9e0fd
2 changed files with 32 additions and 11 deletions

View File

@@ -146,6 +146,10 @@ rm outputw
testing "sed trailing NUL" \
"sed 's/i/z/' input -" \
"a\0b\0\nc" "a\0b\0" "c"
testing "sed escaped newline in command" \
"sed 's/a/z\\
z/' input" \
"z\nz" "a" ""
# Test end-of-file matching behavior