]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/command11.0
10c86479d81b485985ff6fd226d3da6fd34a44ea
[apple/shell_cmds.git] / sh / tests / builtins / command11.0
1 # $FreeBSD$
2
3 failures=0
4
5 check() {
6 if ! eval "[ $* ]"; then
7 echo "Failed: $*"
8 : $((failures += 1))
9 fi
10 }
11
12 check '"$({ command eval \{ shift x\; \} 2\>/dev/null; } >/dev/null; echo hi)" = hi'
13
14 exit $((failures > 0))