diff options
author | Rob Landley <rob@landley.net> | 2019-07-06 15:54:56 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-07-06 15:54:56 -0500 |
commit | 6a63b625bfa2c0e86c18ccb5bdc71010e24c9829 (patch) | |
tree | 34e31ceefcf14059ef01131e9180912185a75905 /tests | |
parent | 5822475e0d0be7825406c4f4197375a532fc831f (diff) | |
download | toybox-6a63b625bfa2c0e86c18ccb5bdc71010e24c9829.tar.gz |
Add comment and test.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/env.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/env.test b/tests/env.test index 4df118dd..63b9094d 100755 --- a/tests/env.test +++ b/tests/env.test @@ -21,3 +21,8 @@ testcmd "early fail" '--oops 2> /dev/null ; echo $?' "125\n" "" "" testcmd "why is this allowed" "=BLAH env | grep '^=BLAH\$'" "=BLAH\n" "" "" testcmd "replace" "A=foo PATH= `which printenv` A" "foo\n" "" "" + +# env bypasses shell builtins +ln -s "$(which echo)" true +testcmd "norecurse" 'env PATH="$PWD:$PATH" true hello' "hello\n" "" "" +rm true |