diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-29 17:10:19 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-29 17:10:19 +0000 |
commit | 86811803e304b63b71d3ddac91ad4e1cd741344f (patch) | |
tree | 3ecbd8b554f6a4c82f9b03d29087914f3d8a9623 /testsuite/sed.tests | |
parent | c562bb74877f68edebfa31515c17d63fc4769a60 (diff) |
add to testsuite and fix yet another sed corner case
Diffstat (limited to 'testsuite/sed.tests')
-rwxr-xr-x | testsuite/sed.tests | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/sed.tests b/testsuite/sed.tests index cc200703d..9576b6c4b 100755 --- a/testsuite/sed.tests +++ b/testsuite/sed.tests @@ -143,6 +143,9 @@ testing "sed subst+write" \ "sed -e 's/i/z/' -e 'woutputw' input -; echo -n X; cat outputw" \ "thzngy\nagaznXthzngy\nagazn" "thingy" "again" rm outputw +testing "sed trailing NUL" \ + "sed 's/i/z/' input -" \ + "a\0b\0\nc" "a\0b\0" "c" # Test end-of-file matching behavior |