blob: d90c3b8783f0898f10faf1b75db080e12c2624f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $FreeBSD: src/tools/regression/bin/sh/builtins/command9.0,v 1.1.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $
failures=0
check() {
if ! eval "[ $* ]"; then
echo "Failed: $*"
: $((failures += 1))
fi
}
check '"$({ command eval shift x 2>/dev/null; } >/dev/null; echo hi)" = hi'
exit $((failures > 0))
|