tests/functional: Differentiate die and fail

This commit is contained in:
Robert Hensing 2024-06-24 18:11:10 +02:00
parent 602c444411
commit d4ca634508

View file

@ -11,7 +11,7 @@ isTestOnNixOS() {
}
die() {
echo "fatal error: $*" >&2
echo "unexpected fatal error: $*" >&2
exit 1
}
@ -216,7 +216,7 @@ requireGit() {
}
fail() {
echo "$1" >&2
echo "test failed: $1" >&2
exit 1
}