mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 11:20:29 -05:00
21 lines
213 B
Text
21 lines
213 B
Text
# $FreeBSD$
|
|
|
|
failures=0
|
|
|
|
check() {
|
|
if ! eval "[ $* ]"; then
|
|
echo "Failed: $*"
|
|
: $((failures += 1))
|
|
fi
|
|
}
|
|
|
|
check '"$(cat <<""
|
|
|
|
echo yes)" = "yes"'
|
|
|
|
check '"$(cat <<""
|
|
yes
|
|
|
|
)" = "yes"'
|
|
|
|
exit $((failures != 0))
|