aboutsummaryrefslogtreecommitdiffstats
path: root/tests/include.sh
blob: 317ab527e5da44bb5af951e95b2a2a1591e72753 (plain) (blame)
1
2
3
4
5
6
7
8
9
assert() {
	set +e
	if . /dev/stdin; then
		echo "PASS: $1" >&2
	else
		echo "FAIL: $1" >&2
	fi
	set -e
}