diff options
Diffstat (limited to 'testsuite/sed.tests')
-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" "" \ | |||
146 | "hello\nthere" | 146 | "hello\nthere" |
147 | testing "sed match EOF two files" "sed -e '"'$p'"' input -" \ | 147 | testing "sed match EOF two files" "sed -e '"'$p'"' input -" \ |
148 | "one\ntwo\nthree\nfour\nfour" "one\ntwo" "three\nfour" | 148 | "one\ntwo\nthree\nfour\nfour" "one\ntwo" "three\nfour" |
149 | # sed match EOF inline: gnu sed 4.1.5 outputs this: | ||
150 | #00000000 6f 6e 65 0a 6f 6f 6b 0a 6f 6f 6b 0a 74 77 6f 0a |one.ook.ook.two.| | ||
151 | #00000010 0a 74 68 72 65 65 0a 6f 6f 6b 0a 6f 6f 6b 0a 66 |.three.ook.ook.f| | ||
152 | #00000020 6f 75 72 |our| | ||
153 | # which looks buggy to me. | ||
149 | echo -ne "three\nfour" > input2 | 154 | echo -ne "three\nfour" > input2 |
150 | testing "sed match EOF inline" \ | 155 | testing "sed match EOF inline" \ |
151 | "sed -e '"'$i ook'"' -i input input2 && cat input input2" \ | 156 | "sed -e '"'$i ook'"' -i input input2 && cat input input2" \ |