diff options
author | Rob Landley <rob@landley.net> | 2020-06-14 10:16:17 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-06-14 10:16:17 -0500 |
commit | 055d8eac143d2f294814af8dc7d6a243f156e202 (patch) | |
tree | 976e538010e890976299839238913bf08616c24a /tests | |
parent | 70e2232ce61c87f1dca869107b2998b7a4dfd0d2 (diff) | |
download | toybox-055d8eac143d2f294814af8dc7d6a243f156e202.tar.gz |
Fix test not to use shell builtin.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/echo.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/echo.test b/tests/echo.test index 3ef60671..012692ea 100755 --- a/tests/echo.test +++ b/tests/echo.test @@ -9,7 +9,7 @@ #testing "name" "command" "result" "infile" "stdin" -testcmd "echo" "&& echo yes" "\nyes\n" "" "" +testcmd "echo" "&& $C yes" "\nyes\n" "" "" testcmd "1 2 3" "one two three" "one two three\n" "" "" testcmd "with spaces" "'one two three'" \ "one two three\n" "" "" |