From: Akim Demaille Date: Tue, 25 Nov 2008 19:49:25 +0000 (+0100) Subject: Prefer TESTSUITE_FLAGS. X-Git-Tag: v2.7.90~995 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/95a7b1c9341f2d2f19b9835ea643da7b20da10d6 Prefer TESTSUITE_FLAGS. TESTSUITEFLAGS is barely readable. * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS) for backward compatibility. Use the former instead of the latter. --- diff --git a/ChangeLog b/ChangeLog index 4485a145..da0fa0a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-11-25 Akim Demaille + + Prefer TESTSUITE_FLAGS. + TESTSUITEFLAGS is barely readable. + + * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS) + for backward compatibility. + Use the former instead of the latter. + 2008-11-25 Akim Demaille Get rid of yyrhs and yyprhs in larl1.java. diff --git a/tests/local.mk b/tests/local.mk index e4881a4a..3c89ae26 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -78,15 +78,17 @@ clean-local: clean-local-tests clean-local-tests: test ! -f $(TESTSUITE) || cd tests && ../$(TESTSUITE) --clean +# TESTSUITEFLAGS was used initially, this is backward compatibility. +TESTSUITE_FLAGS = $(TESTSUITEFLAGS) check-local: tests/atconfig tests/atlocal $(TESTSUITE) # Move into tests/ so that testsuite.dir etc. be created there. - cd tests && ../$(TESTSUITE) $(TESTSUITEFLAGS) + cd tests && ../$(TESTSUITE) $(TESTSUITE_FLAGS) check_SCRIPTS = tests/bison # Run the test suite on the *installed* tree. installcheck-local: - cd tests && ../$(TESTSUITE) AUTOTEST_PATH="$(bindir)" $(TESTSUITEFLAGS) + cd tests && ../$(TESTSUITE) AUTOTEST_PATH="$(bindir)" $(TESTSUITE_FLAGS) # Be real mean with it. .PHONY: maintainer-check-g++