diff options
Diffstat (limited to 'testsuite/sed.tests')
-rwxr-xr-x | testsuite/sed.tests | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/sed.tests b/testsuite/sed.tests index 9d2be5570..2a0d4eacf 100755 --- a/testsuite/sed.tests +++ b/testsuite/sed.tests | |||
@@ -116,7 +116,7 @@ testing "sed leave off trailing newline" "sed -e 's/woo/bang/' input -" \ | |||
116 | testing "sed autoinsert newline" "sed -e 's/woo/bang/' input -" "bang\nbang" \ | 116 | testing "sed autoinsert newline" "sed -e 's/woo/bang/' input -" "bang\nbang" \ |
117 | "woo" "woo" | 117 | "woo" "woo" |
118 | testing "sed empty file plus cat" "sed -e 's/nohit//' input -" "one\ntwo" \ | 118 | testing "sed empty file plus cat" "sed -e 's/nohit//' input -" "one\ntwo" \ |
119 | "" "one\ntwo" | 119 | "" "one\ntwo" |
120 | testing "sed cat plus empty file" "sed -e 's/nohit//' input -" "one\ntwo" \ | 120 | testing "sed cat plus empty file" "sed -e 's/nohit//' input -" "one\ntwo" \ |
121 | "one\ntwo" "" | 121 | "one\ntwo" "" |
122 | testing "sed append autoinserts newline" "sed -e '/woot/a woo' -" \ | 122 | testing "sed append autoinserts newline" "sed -e '/woot/a woo' -" \ |
@@ -138,7 +138,7 @@ testing "sed selective matches noinsert newline" \ | |||
138 | "c no\nd no" | 138 | "c no\nd no" |
139 | testing "sed clusternewline" \ | 139 | testing "sed clusternewline" \ |
140 | "sed -e '/one/a 111' -e '/two/i 222' -e p input -" \ | 140 | "sed -e '/one/a 111' -e '/two/i 222' -e p input -" \ |
141 | "one\none\n111\n222\ntwo\ntwo" "one" "two" | 141 | "one\none\n111\n222\ntwo\ntwo" "one" "two" |
142 | 142 | ||
143 | # Test end-of-file matching behavior | 143 | # Test end-of-file matching behavior |
144 | 144 | ||