xref: /freebsd/bin/sh/tests/builtins/command11.0 (revision c7996ddf8000cfb19a9e91a636f56747860d03d7)
1# $FreeBSD$
2
3failures=0
4
5check() {
6	if ! eval "[ $* ]"; then
7		echo "Failed: $*"
8		: $((failures += 1))
9	fi
10}
11
12check '"$({ command eval \{ shift x\; \} 2\>/dev/null; } >/dev/null; echo hi)" = hi'
13
14exit $((failures > 0))
15