systemd/debian/tests/assert.sh
Martin Pitt bb8bab30b3 autopkgtests: Factorize out "assert.sh" utility functions
Use them in the tests for useful failure messages.
2015-02-24 16:00:22 +01:00

18 lines
304 B
Bash

# utility functions for shell tests
assert_eq() {
if [ "$1" != "$2" ]; then
echo "FAIL: expected: '$2' actual: '$1'" >&2
exit 1
fi
}
assert_in() {
if ! echo "$2" | grep -q "$1"; then
echo "FAIL: '$1' not found in:" >&2
echo "$2" >&2
exit 1
fi
}