mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 15:48:48 -04:00
22 lines
213 B
Text
22 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))
|