commit 7e5ab53a78beb172cba18005e2370904c653e3df
parent e9a2f156f10b06dbc763f6dba0e33afe9c720ed1
Author: Christian Grothoff <christian@grothoff.org>
Date: Mon, 1 Apr 2024 14:56:24 +0200
-fix mustach valgrind detection
Diffstat:
3 files changed, 2 insertions(+), 13 deletions(-)
diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile
@@ -10,7 +10,6 @@ RUN apt-get update -yqq && \
bash \
coreutils \
git \
- strace \
libcurl4-gnutls-dev \
libgcrypt-dev \
libidn11-dev \
diff --git a/src/templating/dotest.sh b/src/templating/dotest.sh
@@ -6,14 +6,12 @@ exit_fail() {
exit 1
}
-mustach="../mustach"
+mustach="${mustach:-../mustach}"
echo "starting test"
-if test "$NOVALGRIND" = 1
+if ! valgrind --version 2> /dev/null
then
- strace -f $mustach "$@"
$mustach "$@" > resu.last || exit_fail "ERROR! mustach command failed ($?)!"
else
- valgrind $mustach "$@"
valgrind $mustach "$@" > resu.last 2> vg.last || exit_fail "ERROR! valgrind + mustach command failed ($?)!"
sed -i 's:^==[0-9]*== ::' vg.last
awk '/^ *total heap usage: .* allocs, .* frees,.*/{if($$4-$$6)exit(1)}' vg.last || exit_fail "ERROR! Alloc/Free issue"
diff --git a/src/templating/mustach-original-Makefile b/src/templating/mustach-original-Makefile
@@ -237,14 +237,6 @@ uninstall:
rm -f $(DESTDIR)$(LIBDIR)/libmustach*.so*
rm -rf $(DESTDIR)$(INCLUDEDIR)/mustach
-# testing
-ifeq ($(valgrind),no)
- NOVALGRIND := 1
-else
- NOVALGRIND := $(valgrind --version > /dev/null && echo 0 || echo 1)
-endif
-export NOVALGRIND
-
.PHONY: test test-basic test-specs
test: basic-tests spec-tests