diff options
author | Rob Landley <rob@landley.net> | 2020-04-27 06:11:23 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-04-27 06:11:23 -0500 |
commit | 57353ae099a4c41808ed95b58b03d6b0ef9406d8 (patch) | |
tree | 8330500b0d2db3e97e4929e20fcc9fee5af27232 /tests | |
parent | 44cb08f3cdab43b5d3b1ac266e79439419492ba6 (diff) | |
download | toybox-57353ae099a4c41808ed95b58b03d6b0ef9406d8.tar.gz |
Redo toysh variable expansion plumbing to start ${} (variable expansion can
now return error), inline utf8spnc and merge_arg(), unify "break" logic,
fix "continue" and "done; done", fix cd not to expand arguments twice
Diffstat (limited to 'tests')
-rw-r--r-- | tests/sh.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sh.test b/tests/sh.test index 18e19a86..2fb341b3 100644 --- a/tests/sh.test +++ b/tests/sh.test @@ -55,7 +55,7 @@ rm -rf sub testing "script file" "chmod +x input; ./input" "hello\n" "#!$C\necho hello" "" -testing "IFS $*" "sh -c 'IFS=xy; echo \"\$*\"' one two tyree" "twoxtyree\n" \ +testing 'IFS $*' "sh -c 'IFS=xy; echo \"\$*\"' one two tyree" "twoxtyree\n" \ "" "" # Change EVAL to call sh -c for us, using "bash" explicitly for the host. |