]> git.saurik.com Git - bison.git/blame - tests/local.mk
tests: enhance AT_YYERROR_DEFINE.
[bison.git] / tests / local.mk
CommitLineData
d4977ce3
AD
1## Makefile for Bison testsuite.
2
2a559307
AD
3# Copyright (C) 2000-2012 Free Software Foundation, Inc.
4#
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.
9#
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.
14#
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/>.
d4977ce3 17
9bfbf75b 18EXTRA_DIST += $(TESTSUITE_AT) tests/testsuite
d4977ce3
AD
19
20DISTCLEANFILES += tests/atconfig $(check_SCRIPTS)
21MAINTAINERCLEANFILES += $(TESTSUITE)
22
23## ------------ ##
24## package.m4. ##
25## ------------ ##
26
27$(top_srcdir)/tests/package.m4: $(top_srcdir)/configure
9bfbf75b
AD
28 $(AM_V_GEN)rm -f $@ $@.tmp
29 $(AM_V_at){ \
d4977ce3
AD
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)])'; \
36 } >$@.tmp
9bfbf75b 37 $(AM_V_at)mv $@.tmp $@
d4977ce3 38
ff9684b7
AD
39## ------------------------- ##
40## Generate the test suite. ##
41## ------------------------- ##
d4977ce3 42
e9690142 43TESTSUITE_AT = \
9bfbf75b
AD
44 tests/testsuite.at \
45 \
e9690142
JD
46 tests/actions.at \
47 tests/c++.at \
48 tests/calc.at \
49 tests/conflicts.at \
50 tests/cxx-type.at \
51 tests/existing.at \
52 tests/glr-regression.at \
53 tests/headers.at \
54 tests/input.at \
55 tests/java.at \
56 tests/local.at \
57 tests/named-refs.at \
58 tests/output.at \
9bfbf75b 59 tests/package.m4 \
e9690142
JD
60 tests/push.at \
61 tests/reduce.at \
62 tests/regression.at \
63 tests/sets.at \
64 tests/skeletons.at \
65 tests/synclines.at \
d4977ce3
AD
66 tests/torture.at
67
68TESTSUITE = $(top_srcdir)/tests/testsuite
69
70AUTOTEST = $(AUTOM4TE) --language=autotest
56ddee7f 71AUTOTESTFLAGS = -I $(top_srcdir)/tests
9bfbf75b 72$(TESTSUITE): $(TESTSUITE_AT)
da83f838
AD
73 $(AM_V_GEN) \
74 $(AUTOTEST) $(AUTOTESTFLAGS) $(srcdir)/tests/testsuite.at -o $@.tmp
9bfbf75b 75 $(AM_V_at)mv $@.tmp $@
d4977ce3 76
ff9684b7
AD
77
78## -------------------- ##
79## Run the test suite. ##
80## -------------------- ##
81
82# Move into tests/ so that testsuite.dir etc. be created there.
83RUN_TESTSUITE = $(TESTSUITE) -C tests $(TESTSUITEFLAGS)
84check_SCRIPTS = $(BISON) tests/atconfig tests/atlocal
85RUN_TESTSUITE_deps = $(TESTSUITE) $(check_SCRIPTS)
86
d4977ce3
AD
87clean-local: clean-local-tests
88clean-local-tests:
2cd1af95 89 test ! -f $(TESTSUITE) || $(TESTSUITE) -C tests --clean
d4977ce3 90
ff9684b7 91check-local: $(RUN_TESTSUITE_deps)
a8873669 92 $(RUN_TESTSUITE)
d4977ce3 93
d4977ce3 94# Run the test suite on the *installed* tree.
ff9684b7 95installcheck-local: $(RUN_TESTSUITE_deps)
24d84dd2 96 $(RUN_TESTSUITE) AUTOTEST_PATH='$(bindir)'
d4977ce3
AD
97
98# Be real mean with it.
99.PHONY: maintainer-check-g++
ff9684b7 100maintainer-check-g++: $(RUN_TESTSUITE_deps)
ac3f2e33 101 $(RUN_TESTSUITE) --compile-c-with-cxx
d4977ce3
AD
102
103.PHONY: maintainer-check-posix
ff9684b7 104maintainer-check-posix: $(RUN_TESTSUITE_deps)
a8873669 105 $(RUN_TESTSUITE) POSIXLY_CORRECT=1 _POSIX2_VERSION=200112
d4977ce3
AD
106
107.PHONY: maintainer-check-valgrind
ff9684b7 108maintainer-check-valgrind: $(RUN_TESTSUITE_deps)
24d84dd2
AD
109 test -z '$(VALGRIND)' || \
110 $(RUN_TESTSUITE) \
111 PREBISON='$(VALGRIND) -q' PREPARSER='$(VALGRIND) -q' \
112 VALGRIND_OPTS='--leak-check=full --show-reachable=yes'
d4977ce3
AD
113
114.PHONY: maintainer-check
115maintainer-check: maintainer-check-posix maintainer-check-valgrind maintainer-check-g++
116
117.PHONY: maintainer-push-check
118maintainer-push-check:
24d84dd2
AD
119 $(MAKE) $(AM_MAKEFLAGS) maintainer-check \
120 TESTSUITEFLAGS='BISON_USE_PUSH_FOR_PULL=1 $(TESTSUITEFLAGS)'
d4977ce3
AD
121
122.PHONY: maintainer-xml-check
123maintainer-xml-check:
24d84dd2
AD
124 $(MAKE) $(AM_MAKEFLAGS) maintainer-check \
125 TESTSUITEFLAGS='BISON_TEST_XML=1 $(TESTSUITEFLAGS)'