diff options
author | Rob Landley <rob@landley.net> | 2021-04-26 05:09:57 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2021-04-26 05:09:57 -0500 |
commit | 773d404ee2b99797763012a32b317422ac18d64e (patch) | |
tree | d58f8669069582b5fe325c2e849f4f30b597f196 /tests | |
parent | 1a7ebb16ee72f4f19d3c1eae3c4c42cf8734cab9 (diff) | |
download | toybox-773d404ee2b99797763012a32b317422ac18d64e.tar.gz |
Bugfix: sed s command couldn't skip initial match.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/sed.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/sed.test b/tests/sed.test index c3928e58..fd3b2057 100755 --- a/tests/sed.test +++ b/tests/sed.test @@ -115,6 +115,7 @@ testing 'empty match after nonempty match' "sed -e 's/a*/c/g'" 'cbcncgc' \ testing 'empty match' "sed -e 's/[^ac]*/A/g'" 'AaAcA' '' 'abcde' testing 's///#comment' "sed -e 's/TWO/four/i#comment'" "one\nfour\nthree" \ "" "one\ntwo\nthree" +testing 's///num off end' 'sed -e s/e//2' 'e\n' '' 'e\n' testing 'N flushes pending a and advances match counter' \ "sed -e 'a woo' -e 'N;\$p'" 'woo\none\ntwo\none\ntwo' "" 'one\ntwo' |