mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 04:13:03 +00:00
starting at <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>. * configure.ac (XSLTPROC): New substitution. * Makefile.am (maintainer-xml-check): New phony target invoking... * tests/Makefile.am (maintainer-xml-check): ... this new phony target invoking make maintainer-check with BISON_TEST_XML=1. * tests/atlocal.in (XSLTPROC): New. * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind not to report reachable memory when Bison is expected to have a non-zero exit status and (2) to compare XML/XSLT output with --graph and --report=all output for every working grammar when BISON_TEST_XML=1. (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks. (AT_BISON_CHECK_XML): New. (AT_QUELL_VALGRIND): New. * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and... (AT_CHECK): ... don't redefine this since this was the old way to quell Valgrind. * tests/actions.at: Rewrite all AT_CHECK invocations for bison as AT_BISON_CHECK invocations. * tests/c++.at: Likewise. * tests/calc.at: Likewise. * tests/conflicts.at: Likewise. * tests/cxx-type.at: Likewise. * tests/existing.at: Likewise. * tests/glr-regression.at: Likewise. * tests/headers.at: Likewise. * tests/input.at: Likewise. * tests/java.at: Likewise. * tests/output.at: Likewise. * tests/push.at: Likewise. * tests/reduce.at: Likewise. * tests/regression.at: Likewise. * tests/sets.at: Likewise. * tests/skeletons.at: Likewise. * tests/synclines.at: Likewise. * tests/torture.at: Likewise. (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar tends to hang xsltproc. (Big horizontal): Likewise.
45 lines
1.5 KiB
Makefile
45 lines
1.5 KiB
Makefile
## Process this file with automake to produce Makefile.in -*-Makefile-*-
|
|
## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software
|
|
## Foundation, Inc.
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = build-aux po runtime-po lib data src doc examples tests etc
|
|
|
|
# Files installed for use by Automake.
|
|
aclocaldir = @aclocaldir@
|
|
aclocal_DATA = m4/bison-i18n.m4
|
|
|
|
EXTRA_DIST = GNUmakefile Makefile.cfg Makefile.maint \
|
|
OChangeLog PACKAGING \
|
|
djgpp/Makefile.maint djgpp/README.in djgpp/config.bat \
|
|
djgpp/config.sed djgpp/config.site djgpp/config_h.sed \
|
|
djgpp/subpipe.c djgpp/subpipe.h djgpp/djunpack.bat \
|
|
djgpp/fnchange.lst djgpp/testsuite.sed
|
|
|
|
|
|
.PHONY: maintainer-check
|
|
maintainer-check:
|
|
cd tests && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
|
|
.PHONY: maintainer-push-check
|
|
maintainer-push-check:
|
|
cd tests && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
|
|
.PHONY: maintainer-xml-check
|
|
maintainer-xml-check:
|
|
cd tests && $(MAKE) $(AM_MAKEFLAGS) $@
|