X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/b63473552d7014a4868eb32bf90e4f4814b9be39..603f1cfdc56691b331b6ef337a8c3633e7a125b3:/tests/Makefile.am diff --git a/tests/Makefile.am b/tests/Makefile.am index 0bb522c9..960d6586 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,7 +1,7 @@ ## Process this file with automake to create Makefile.in. ## Makefile for Bison testsuite. -## Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. +## Copyright (C) 2000, 2001, 2002, 2003 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 @@ -42,18 +42,20 @@ $(srcdir)/package.m4: $(top_srcdir)/configure.ac ## ------------ ## TESTSUITE_AT = \ + local.at \ testsuite.at \ input.at \ output.at sets.at reduce.at \ synclines.at headers.at actions.at conflicts.at \ calc.at \ torture.at existing.at regression.at \ - cxx-type.at + cxx-type.at glr-regression.at TESTSUITE = $(srcdir)/testsuite AUTOTEST = $(AUTOM4TE) --language=autotest $(TESTSUITE): package.m4 $(TESTSUITE_AT) + echo "WARNING: Multiple inclusion warning should be ignored." >&2 $(AUTOTEST) -I $(srcdir) testsuite.at -o $@.tmp mv $@.tmp $@ @@ -71,3 +73,27 @@ check_SCRIPTS = bison # Run the test suite on the *installed* tree. installcheck-local: $(SHELL) $(TESTSUITE) AUTOTEST_PATH=$(exec_prefix)/bin + +# Be real mean with it. +.PHONY: maintainer-check-g++ +maintainer-check-g++: $(TESTSUITE) + if test -n "$(VALGRIND)"; then \ + $(TESTSUITE) CC='$(GXX)'; \ + else \ + true; \ + fi + +.PHONY: maintainer-check-posix +maintainer-check-posix: $(TESTSUITE) + $(TESTSUITE) POSIXLY_CORRECT=1 + +.PHONY: maintainer-check-valgrind +maintainer-check-valgrind: $(TESTSUITE) + if test -n "$(VALGRIND)"; then \ + $(TESTSUITE) PREBISON='$(VALGRIND) -q' PREPARSER='$(VALGRIND) -q'; \ + else \ + true; \ + fi + +.PHONY: maintainer-check +maintainer-check: maintainer-check-posix maintainer-check-valgrind maintainer-check-g++