From f2d4ef798e68f1bf6ae0e158c6ccc13feeadbc33 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 18 Mar 2024 23:31:02 +0100 Subject: make mustach test suite more robust --- src/templating/run-original-tests.sh | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/templating/run-original-tests.sh b/src/templating/run-original-tests.sh index 09420c4e9..289ae8711 100755 --- a/src/templating/run-original-tests.sh +++ b/src/templating/run-original-tests.sh @@ -1,16 +1,25 @@ #!/bin/bash +# This file is in the public domain. set -eu -# The build fails if libjson-c-dev is not installed. -# That's OK, we don't otherwise need it and don't -# even bother testing for it in configure.ac. -# However, in that case, skip the test suite. export CFLAGS="-g" +function build() +{ + make clean + make +} + +# Install rebuild-on-exit handler (except for kill -9) +trap build EXIT + make clean + +# The build fails if libjson-c-dev is not installed. +# That's OK, we don't otherwise need it and don't +# even bother testing for it in configure.ac. +# However, in that case, skip the test suite. make -f mustach-original-Makefile mustach || exit 77 make -f mustach-original-Makefile clean || true make -f mustach-original-Makefile basic-tests make -f mustach-original-Makefile clean || true -make clean -make -- cgit v1.2.3