commit f2d4ef798e68f1bf6ae0e158c6ccc13feeadbc33
parent 200bbfbefda8c67ec5196d7384b32e9fa33c4bb7
Author: Christian Grothoff <christian@grothoff.org>
Date: Mon, 18 Mar 2024 23:31:02 +0100
make mustach test suite more robust
Diffstat:
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git 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