* tests/Makefile.am (maintainer-check-posix): New.

This commit is contained in:
Akim Demaille
2002-10-14 15:09:15 +00:00
parent 7ebc83e34d
commit d43baf71a7
3 changed files with 21 additions and 9 deletions

View File

@@ -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
View File

@@ -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

View File

@@ -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++