1 ## Makefile for Bison testsuite.
3 # Copyright (C) 2000-2013 Free Software Foundation, Inc.
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 EXTRA_DIST += $(TESTSUITE_AT) tests/testsuite
20 DISTCLEANFILES += tests/atconfig $(check_SCRIPTS)
21 MAINTAINERCLEANFILES += $(TESTSUITE)
27 $(top_srcdir)/tests/package.m4: $(top_srcdir)/configure
28 $(AM_V_GEN)rm -f $@ $@.tmp
30 echo '# Signature of the current package.'; \
31 echo 'm4_define([AT_PACKAGE_NAME], [$(PACKAGE_NAME)])'; \
32 echo 'm4_define([AT_PACKAGE_TARNAME], [$(PACKAGE_TARNAME)])'; \
33 echo 'm4_define([AT_PACKAGE_VERSION], [$(PACKAGE_VERSION)])'; \
34 echo 'm4_define([AT_PACKAGE_STRING], [$(PACKAGE_STRING)])'; \
35 echo 'm4_define([AT_PACKAGE_BUGREPORT], [$(PACKAGE_BUGREPORT)])'; \
37 $(AM_V_at)mv $@.tmp $@
39 ## ------------------------- ##
40 ## Generate the test suite. ##
41 ## ------------------------- ##
52 tests/glr-regression.at \
69 TESTSUITE = $(top_srcdir)/tests/testsuite
71 AUTOTEST = $(AUTOM4TE) --language=autotest
72 AUTOTESTFLAGS = -I $(top_srcdir)/tests
73 $(TESTSUITE): $(TESTSUITE_AT)
75 $(AUTOTEST) $(AUTOTESTFLAGS) $(srcdir)/tests/testsuite.at -o $@.tmp
76 $(AM_V_at)$(PERL) -pi -e 's/\@tb\@/\t/g' $@.tmp
77 $(AM_V_at)mv $@.tmp $@
80 ## -------------------- ##
81 ## Run the test suite. ##
82 ## -------------------- ##
84 # Move into tests/ so that testsuite.dir etc. be created there.
85 RUN_TESTSUITE = $(TESTSUITE) -C tests $(TESTSUITEFLAGS)
86 check_SCRIPTS = $(BISON) tests/atconfig tests/atlocal
87 RUN_TESTSUITE_deps = $(TESTSUITE) $(check_SCRIPTS)
89 clean-local: clean-local-tests
91 test ! -f $(TESTSUITE) || $(TESTSUITE) -C tests --clean
93 check-local: $(RUN_TESTSUITE_deps)
96 # Run the test suite on the *installed* tree.
97 installcheck-local: $(RUN_TESTSUITE_deps)
98 $(RUN_TESTSUITE) AUTOTEST_PATH='$(bindir)'
100 # Be real mean with it.
101 .PHONY: maintainer-check-g++
102 maintainer-check-g++: $(RUN_TESTSUITE_deps)
103 $(RUN_TESTSUITE) --compile-c-with-cxx
105 .PHONY: maintainer-check-posix
106 maintainer-check-posix: $(RUN_TESTSUITE_deps)
107 $(RUN_TESTSUITE) POSIXLY_CORRECT=1 _POSIX2_VERSION=200112
109 .PHONY: maintainer-check-valgrind
110 maintainer-check-valgrind: $(RUN_TESTSUITE_deps)
111 test -z '$(VALGRIND)' || \
113 PREBISON='$(VALGRIND_PREBISON)' PREPARSER='$(VALGRIND) -q' \
114 VALGRIND_OPTS='--leak-check=full --show-reachable=yes'
116 .PHONY: maintainer-check
117 maintainer-check: maintainer-check-posix maintainer-check-valgrind maintainer-check-g++
119 .PHONY: maintainer-push-check
120 maintainer-push-check:
121 $(MAKE) $(AM_MAKEFLAGS) maintainer-check \
122 TESTSUITEFLAGS='BISON_USE_PUSH_FOR_PULL=1 $(TESTSUITEFLAGS)'
124 .PHONY: maintainer-xml-check
125 maintainer-xml-check:
126 $(MAKE) $(AM_MAKEFLAGS) maintainer-check \
127 TESTSUITEFLAGS='BISON_TEST_XML=1 $(TESTSUITEFLAGS)'