diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2012-06-07 16:34:57 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-06-07 16:34:57 +0200 |
commit | 84406e459be31b89de5a3d822f205d61c4c5855b (patch) | |
tree | 0a7cea9477a581761c694c9668a28e334da2ceef /testsuite/sed.tests | |
parent | c35545a100c08d26d49fd1c2ca10e56e6650c5c1 (diff) |
sed: fix breakage added by zero length match code
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/sed.tests')
-rwxr-xr-x | testsuite/sed.tests | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/sed.tests b/testsuite/sed.tests index 375beb518..12b36ae18 100755 --- a/testsuite/sed.tests +++ b/testsuite/sed.tests @@ -302,6 +302,10 @@ testing "sed zero chars match/replace advances correctly 2" \ "sed 's [^ .]* x g'" \ "x x.x\n" "" " a.b\n" +testing "sed zero chars match/replace logic must not falsely trigger here" \ + "sed 's/a/A/g'" \ + "_AAA1AA\n" "" "_aaa1aa\n" + # testing "description" "commands" "result" "infile" "stdin" exit $FAILCOUNT |