aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-06-14 10:16:17 -0500
committerRob Landley <rob@landley.net>2020-06-14 10:16:17 -0500
commit055d8eac143d2f294814af8dc7d6a243f156e202 (patch)
tree976e538010e890976299839238913bf08616c24a /tests
parent70e2232ce61c87f1dca869107b2998b7a4dfd0d2 (diff)
downloadtoybox-055d8eac143d2f294814af8dc7d6a243f156e202.tar.gz
Fix test not to use shell builtin.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/echo.test2
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" "" ""