diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-28 23:26:15 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-28 23:26:15 +0000 |
commit | 826c85f3828c30b772d307c6b60ff3be744cecc2 (patch) | |
tree | af1d14dc4df46508bdccc3f99d3aac622933b0f1 /testsuite | |
parent | dccb1a53432aad9ef304f891817f658e58c67651 (diff) |
fix all known regressions with sed and also make it simpler
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/sed.tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/sed.tests b/testsuite/sed.tests index 2a0d4eacf..a386f1723 100755 --- a/testsuite/sed.tests +++ b/testsuite/sed.tests @@ -146,6 +146,11 @@ testing "sed match EOF" "sed -e '"'$p'"'" "hello\nthere\nthere" "" \ "hello\nthere" testing "sed match EOF two files" "sed -e '"'$p'"' input -" \ "one\ntwo\nthree\nfour\nfour" "one\ntwo" "three\nfour" +# sed match EOF inline: gnu sed 4.1.5 outputs this: +#00000000 6f 6e 65 0a 6f 6f 6b 0a 6f 6f 6b 0a 74 77 6f 0a |one.ook.ook.two.| +#00000010 0a 74 68 72 65 65 0a 6f 6f 6b 0a 6f 6f 6b 0a 66 |.three.ook.ook.f| +#00000020 6f 75 72 |our| +# which looks buggy to me. echo -ne "three\nfour" > input2 testing "sed match EOF inline" \ "sed -e '"'$i ook'"' -i input input2 && cat input input2" \ |