]> git.saurik.com Git - bison.git/blame_incremental - tests/Makefile.am
misc: require getline
[bison.git] / tests / Makefile.am
... / ...
CommitLineData
1## Process this file with automake to create Makefile.in.
2
3## Makefile for Bison testsuite.
4
5## Copyright (C) 2000-2012 Free Software Foundation, Inc.
6
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20EXTRA_DIST = $(TESTSUITE_AT) testsuite package.m4
21
22DISTCLEANFILES = atconfig $(check_SCRIPTS)
23MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
24
25## ------------ ##
26## package.m4. ##
27## ------------ ##
28
29$(srcdir)/package.m4: $(top_srcdir)/configure
30 $(AM_V_GEN) { \
31 echo '# Signature of the current package.'; \
32 echo 'm4_define([AT_PACKAGE_NAME], [$(PACKAGE_NAME)])'; \
33 echo 'm4_define([AT_PACKAGE_TARNAME], [$(PACKAGE_TARNAME)])'; \
34 echo 'm4_define([AT_PACKAGE_VERSION], [$(PACKAGE_VERSION)])'; \
35 echo 'm4_define([AT_PACKAGE_STRING], [$(PACKAGE_STRING)])'; \
36 echo 'm4_define([AT_PACKAGE_BUGREPORT], [$(PACKAGE_BUGREPORT)])'; \
37 } >$@.tmp
38 $(AM_V_at) mv $@.tmp $@
39
40## ------------ ##
41## Test suite. ##
42## ------------ ##
43
44TESTSUITE_AT = \
45 local.at \
46 testsuite.at \
47 input.at named-refs.at \
48 output.at skeletons.at sets.at reduce.at \
49 synclines.at headers.at actions.at conflicts.at \
50 calc.at \
51 torture.at existing.at regression.at \
52 c++.at \
53 java.at \
54 cxx-type.at glr-regression.at \
55 push.at
56
57TESTSUITE = $(srcdir)/testsuite
58
59AUTOTEST = $(AUTOM4TE) --language=autotest
60$(TESTSUITE): $(srcdir)/package.m4 $(TESTSUITE_AT)
61 $(AM_V_GEN) $(AUTOTEST) -I $(srcdir) testsuite.at -o $@.tmp
62 $(AM_V_at) mv $@.tmp $@
63
64atconfig: $(top_builddir)/config.status
65 cd $(top_builddir) && ./config.status tests/$@
66
67clean-local:
68 test ! -f $(TESTSUITE) || $(SHELL) $(TESTSUITE) --clean
69
70check-local: atconfig atlocal $(TESTSUITE)
71 $(SHELL) $(TESTSUITE) $(TESTSUITEFLAGS)
72
73check_SCRIPTS = bison
74
75# Run the test suite on the *installed* tree.
76installcheck-local: atconfig atlocal $(TESTSUITE)
77 $(TESTSUITE) AUTOTEST_PATH="$(bindir)" $(TESTSUITEFLAGS)
78
79# Be real mean with it.
80.PHONY: maintainer-check-g++
81maintainer-check-g++: atconfig atlocal $(TESTSUITE)
82 $(TESTSUITE) $(TESTSUITEFLAGS) --compile-c-with-cxx
83
84.PHONY: maintainer-check-posix
85maintainer-check-posix: atconfig atlocal $(TESTSUITE)
86 $(TESTSUITE) $(TESTSUITEFLAGS) POSIXLY_CORRECT=1 _POSIX2_VERSION=200112
87
88.PHONY: maintainer-check-valgrind
89maintainer-check-valgrind: atconfig atlocal $(TESTSUITE)
90 test -z '$(VALGRIND)' || \
91 $(TESTSUITE) $(TESTSUITEFLAGS) \
92 PREBISON='$(VALGRIND_PREBISON)' PREPARSER='$(VALGRIND) -q' \
93 VALGRIND_OPTS='--leak-check=full --show-reachable=yes'
94
95.PHONY: maintainer-check
96maintainer-check: maintainer-check-posix maintainer-check-valgrind maintainer-check-g++
97
98.PHONY: maintainer-push-check
99maintainer-push-check:
100 BISON_USE_PUSH_FOR_PULL=1 $(MAKE) $(AM_MAKEFLAGS) maintainer-check
101
102.PHONY: maintainer-xml-check
103maintainer-xml-check:
104 BISON_TEST_XML=1 $(MAKE) $(AM_MAKEFLAGS) maintainer-check
105
106.PHONY: maintainer-release-check
107maintainer-release-check: maintainer-check maintainer-push-check maintainer-xml-check