]> git.saurik.com Git - bison.git/commitdiff
s/_FLAGS/FLAGS/.
authorAkim Demaille <demaille@gostai.com>
Wed, 26 Nov 2008 09:29:37 +0000 (10:29 +0100)
committerAkim Demaille <demaille@gostai.com>
Wed, 26 Nov 2008 09:31:53 +0000 (10:31 +0100)
* tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
(TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
Reported by Eric Blake.

ChangeLog
tests/local.mk

index 47bbfeab25e88b5ce30fed2cd61d2512bf1344a6..8aad420556ca47a7056c7473ea44386693fc9dd6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-11-26  Akim Demaille  <demaille@gostai.com>
+
+       s/_FLAGS/FLAGS/.
+       * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
+       (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
+       Reported by Eric Blake.
+
 2008-11-26  Akim Demaille  <demaille@gostai.com>
 
        Use b4_parser_tables_define in glr.cc.
index 3c89ae262a1052c9d06390f5197b563564d1e08e..596918bad08b84f288fb82b37932884a5859662d 100644 (file)
@@ -66,9 +66,9 @@ TESTSUITE_AT =                                        \
 TESTSUITE = $(top_srcdir)/tests/testsuite
 
 AUTOTEST = $(AUTOM4TE) --language=autotest
-AUTOTEST_FLAGS = -I $(top_srcdir)/tests
+AUTOTESTFLAGS = -I $(top_srcdir)/tests
 $(TESTSUITE): tests/package.m4 $(TESTSUITE_AT)
-       $(AUTOTEST) $(AUTOTEST_FLAGS) $(top_srcdir)/tests/testsuite.at -o $@.tmp
+       $(AUTOTEST) $(AUTOTESTFLAGS) $(top_srcdir)/tests/testsuite.at -o $@.tmp
        mv $@.tmp $@
 
 tests/atconfig: $(top_builddir)/config.status
@@ -78,17 +78,15 @@ 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) $(TESTSUITE_FLAGS)
+       cd tests && ../$(TESTSUITE) $(TESTSUITEFLAGS)
 
 check_SCRIPTS = tests/bison
 
 # Run the test suite on the *installed* tree.
 installcheck-local:
-       cd tests && ../$(TESTSUITE) AUTOTEST_PATH="$(bindir)" $(TESTSUITE_FLAGS)
+       cd tests && ../$(TESTSUITE) AUTOTEST_PATH="$(bindir)" $(TESTSUITEFLAGS)
 
 # Be real mean with it.
 .PHONY: maintainer-check-g++