mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-17 00:03:03 +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>
|
2002-10-14 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
|
* 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?
|
union, doesn't she?
|
||||||
|
|
||||||
|
|
||||||
|
* GLR & C++
|
||||||
|
Currently, the GLR parser cannot compile with a C++ compiler.
|
||||||
|
|
||||||
|
|
||||||
* Report
|
* Report
|
||||||
|
|
||||||
** GLR
|
** GLR
|
||||||
|
|||||||
@@ -73,6 +73,18 @@ installcheck-local:
|
|||||||
$(SHELL) $(TESTSUITE) AUTOTEST_PATH=$(exec_prefix)/bin
|
$(SHELL) $(TESTSUITE) AUTOTEST_PATH=$(exec_prefix)/bin
|
||||||
|
|
||||||
# Be real mean with it.
|
# 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
|
.PHONY: maintainer-check-valgrind
|
||||||
maintainer-check-valgrind: $(TESTSUITE)
|
maintainer-check-valgrind: $(TESTSUITE)
|
||||||
if test -n "$(VALGRIND)"; then \
|
if test -n "$(VALGRIND)"; then \
|
||||||
@@ -81,13 +93,5 @@ maintainer-check-valgrind: $(TESTSUITE)
|
|||||||
true; \
|
true; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
.PHONY: maintainer-check-g++
|
|
||||||
maintainer-check-g++: $(TESTSUITE)
|
|
||||||
if test -n "$(VALGRIND)"; then \
|
|
||||||
$(TESTSUITE) CC='$(GXX)' \
|
|
||||||
else \
|
|
||||||
true; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
.PHONY: maintainer-check
|
.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