diff options
| author | Rob Landley <rob@landley.net> | 2017-01-09 19:25:07 -0600 | 
|---|---|---|
| committer | Rob Landley <rob@landley.net> | 2017-01-09 19:25:07 -0600 | 
| commit | 354a6377ece47aa76b2ae25b44cf717a1e1c81e6 (patch) | |
| tree | af81ce11735bf847660acd24c91383491b17b096 | |
| parent | 85ffccb38ef2c6a14e8d68e999655137c0e4b42b (diff) | |
| download | toybox-354a6377ece47aa76b2ae25b44cf717a1e1c81e6.tar.gz | |
More pending shell tests.
| -rwxr-xr-x | tests/sh.test | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/sh.test b/tests/sh.test index 4f1ecb2c..2d6128c8 100755 --- a/tests/sh.test +++ b/tests/sh.test @@ -53,3 +53,17 @@ shellit 'x=5;' '$((x^=12)); echo $x' '99\n' '' ''  shellit 'x=2;' '$((x<<=2)); echo $x' '88\n' '' ''  shellit 'x=12;' '$((x>>=2)); echo $x' '33\n' '' ''  shellit 'x=2;' '$((x++,5)); echo $x' '53\n' '' '' + +# echo $(ls -l #comment) +# cat -</dev/null +# cat -|xargs echo +# cat -(ls) +# echo -! +# echo -{ +# echo -( +# (echo -) +# echo $ +# "echo \$(echo \"hello\nworld\")" +# "echo \"one ;\ntwo\"" +# echo $(ls -l &) +# echo one < /dev/null two  | 
