aboutsummaryrefslogtreecommitdiff
path: root/src/templating/run-original-tests.sh
blob: 09420c4e9cd04426e6ad58a2625da4efbd34bb8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
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"

make clean
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