From 95a7b1c9341f2d2f19b9835ea643da7b20da10d6 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 25 Nov 2008 20:49:25 +0100 Subject: [PATCH] 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. --- ChangeLog | 9 +++++++++ tests/local.mk | 6 ++++-- 2 files changed, 13 insertions(+), 2 deletions(-) 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++ -- 2.47.2