ovni/test/match-ok.sh

32 lines
770 B
Bash
Raw Normal View History

2022-10-07 13:08:14 +02:00
#!/bin/bash
# Copyright (c) 2022 Barcelona Supercomputing Center (BSC)
# SPDX-License-Identifier: GPL-3.0-or-later
# This script return 0 if and only if the given program returns zero
# AND the regex matches the output
# $1 = the regex as grep
# $2... The program
regex="$1"
shift
"${@}" 2>&1 | stdbuf -i0 -o0 tee /dev/stderr | grep "${regex}" >/dev/null
2022-10-07 13:08:14 +02:00
rcprog=${PIPESTATUS[0]} rcgrep=${PIPESTATUS[2]}
echo "rcprog='$rcprog' rcgrep='$rcgrep'"
if [ "$rcprog" = 0 ] && [ "$rcgrep" = 0 ]; then
echo "ok: program succeded and grep matched the error line"
exit 0
else
if [ "$rcprog" != 0 ]; then
echo "error: program exited with \"$rcprog\" rather than 0"
fi
if [ "$rcgrep" != 0 ]; then
echo "error: regex \"${regex}\" not matched"
fi
exit 1
fi