mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-08 01:20:16 +01:00
tests: fix valgrind script to handle exit value 77 (skip)
(cherry picked from commit 9a2c0451a4)
This commit is contained in:
parent
5882153aec
commit
c3bd16c2b6
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ $LIBTOOL --mode=execute "$VALGRIND" \
|
|||
"$TEST"
|
||||
RESULT=$?
|
||||
|
||||
if [ $RESULT -ne 0 ]; then
|
||||
if [ $RESULT -ne 0 -a $RESULT -ne 77 ]; then
|
||||
echo "Don't forget to check the valgrind log at '`realpath $LOGFILE`'." >&2
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue