diff options
Diffstat (limited to 'src/templating/run-original-tests.sh')
-rwxr-xr-x | src/templating/run-original-tests.sh | 21 |
1 files 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 |