mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-27 03:42:56 +00:00
18 lines
304 B
Bash
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
|
|
}
|
|
|