]> git.saurik.com Git - bison.git/commitdiff
Prefer TESTSUITE_FLAGS.
authorAkim Demaille <demaille@gostai.com>
Tue, 25 Nov 2008 19:49:25 +0000 (20:49 +0100)
committerAkim Demaille <demaille@gostai.com>
Tue, 25 Nov 2008 22:01:23 +0000 (23:01 +0100)
TESTSUITEFLAGS is barely readable.

* tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
for backward compatibility.
Use the former instead of the latter.

ChangeLog
tests/local.mk

index 4485a14548f02714a85afa8972be492c885cee8a..da0fa0a8c747465995f6b501b7c9d7ba47326af8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-11-25  Akim Demaille  <demaille@gostai.com>
+
+       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  <demaille@gostai.com>
 
        Get rid of yyrhs and yyprhs in larl1.java.
index e4881a4a2c23ea06801f8e571f48e083cbd68d5d..3c89ae262a1052c9d06390f5197b563564d1e08e 100644 (file)
@@ -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++