diff options
-rwxr-xr-x | tests/sed.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/sed.test b/tests/sed.test index 75d6ec5d..154b36a0 100755 --- a/tests/sed.test +++ b/tests/sed.test @@ -2,6 +2,9 @@ #testing "name" "command" "result" "infile" "stdin" +# toybox saying "no }" here broke the AOSP build. +testing "Braces" "sed -n '/START/{:a;n;/END/q;p;ba}'" "b\nc\n" "" "a\nSTART\nb\nc\nEND\nd" + testing 'as cat' 'sed ""' "one\ntwo\nthree" "" "one\ntwo\nthree" # This segfaults ubuntu 12.04's sed. No really. SKIP_HOST=1 testing 'sed - - twice' 'sed "" - -' "hello\n" "" "hello\n" |