Don't error-out if Valgrind fails

Signed-off-by: Steffen Jaeckel <s@jaeckel.eu>
This commit is contained in:
Steffen Jaeckel
2025-03-07 22:32:18 +01:00
parent 83a4165d92
commit 79dfe2bba2
2 changed files with 3 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ RUN pacman -Syu --noconfirm && pacman -S --needed --noconfirm \
cmake \
cmocka \
curl \
debuginfod \
doxygen \
expat \
gcc \

View File

@@ -65,6 +65,7 @@ case "$ARCH" in
"--without-xscreensaver"
"--disable-gdk-pixbuf"
"")
source /etc/profile.d/debuginfod.sh 2>/dev/null || true
;;
darwin*)
tests=(
@@ -127,7 +128,7 @@ case "$ARCH" in
./configure ${tests[0]} --enable-valgrind $*
$MAKE CC="${CC}"
$MAKE check-valgrind
$MAKE check-valgrind || log_content ./test-suite-memcheck.log
$MAKE distclean
;;
esac