mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
* tests/Makefile.am (maintainer-check-posix): New.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2002-10-14 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* tests/Makefile.am (maintainer-check-posix): New.
|
||||
|
||||
2002-10-14 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
|
||||
|
||||
4
TODO
4
TODO
@@ -33,6 +33,10 @@ check if %union is used, since the user is free to $<foo>n on her
|
||||
union, doesn't she?
|
||||
|
||||
|
||||
* GLR & C++
|
||||
Currently, the GLR parser cannot compile with a C++ compiler.
|
||||
|
||||
|
||||
* Report
|
||||
|
||||
** GLR
|
||||
|
||||
@@ -73,6 +73,18 @@ 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 \
|
||||
@@ -81,13 +93,5 @@ maintainer-check-valgrind: $(TESTSUITE)
|
||||
true; \
|
||||
fi
|
||||
|
||||
.PHONY: maintainer-check-g++
|
||||
maintainer-check-g++: $(TESTSUITE)
|
||||
if test -n "$(VALGRIND)"; then \
|
||||
$(TESTSUITE) CC='$(GXX)' \
|
||||
else \
|
||||
true; \
|
||||
fi
|
||||
|
||||
.PHONY: maintainer-check
|
||||
maintainer-check: maintainer-check-valgrind maintainer-check-g++
|
||||
maintainer-check: maintainer-check-posix maintainer-check-valgrind maintainer-check-g++
|
||||
|
||||
Reference in New Issue
Block a user