diff options
author | Rob Landley <rob@landley.net> | 2019-04-30 17:09:07 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-04-30 17:09:07 -0500 |
commit | 333a8c6500981be6cd7391b32bd794a6d6ca91b3 (patch) | |
tree | 3385da6b31c73c0cf2b260ebbc1092e1701525e3 /tests | |
parent | e425ab040b5315d94d59aa4448dc578daf894979 (diff) | |
download | toybox-333a8c6500981be6cd7391b32bd794a6d6ca91b3.tar.gz |
Make echo -E switch off -e.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/echo.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/echo.test b/tests/echo.test index fa53559a..248454e7 100755 --- a/tests/echo.test +++ b/tests/echo.test @@ -37,3 +37,4 @@ testcmd "-e \p" "-e '\\p'" "\\p\n" "" "" # http://austingroupbugs.net/view.php?id=1222 added -E testcmd "-En" "-En 'one\ntwo'" 'one\\ntwo' "" "" +testcmd "-eE" "-eE '\e'" '\\e\n' "" "" |