Tune local.at so that people can "autom4te -l autotest calc.at -o
authorAkim Demaille <akim@epita.fr>
Mon, 25 Aug 2003 07:15:49 +0000 (07:15 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 25 Aug 2003 07:15:49 +0000 (07:15 +0000)
calc" for instance, to extract a sub test suite.
* tests/testsuite.at: Move the initialization, Autotest version
requirement, and AT_TESTED invocation into...
* tests/local.at: here.
* tests/testsuite.at: Include it for compatibility with Autoconf
2.57.
* tests/Makefile.am ($(TESTSUITE)): Report that the warning should
be ignore.

ChangeLog
tests/Makefile.am
tests/local.at
tests/testsuite.at

index e18fa06..639bcf2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2003-08-25  Akim Demaille  <akim@epita.fr>
+
+       Tune local.at so that people can "autom4te -l autotest calc.at -o
+       calc" for instance, to extract a sub test suite.
+
+       * tests/testsuite.at: Move the initialization, Autotest version
+       requirement, and AT_TESTED invocation into...
+       * tests/local.at: here.
+       * tests/testsuite.at: Include it for compatibility with Autoconf
+       2.57.
+       * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
+       be ignore.
+
 2003-08-04  Paul Eggert  <eggert@twinsun.com>
 
        Rework code slightly to avoid gcc -Wtraditional warnings.
@@ -12,7 +25,7 @@
        yyresolveStates, yyprocessOneStack):
        Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
        Derived from a suggestion by Frank Heckenbach.
-       
+
 2003-07-25  Paul Eggert  <eggert@twinsun.com>
 
        * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
index ae91004..960d658 100644 (file)
@@ -55,6 +55,7 @@ TESTSUITE = $(srcdir)/testsuite
 
 AUTOTEST = $(AUTOM4TE) --language=autotest
 $(TESTSUITE): package.m4 $(TESTSUITE_AT)
+       echo "WARNING: Multiple inclusion warning should be ignored." >&2
        $(AUTOTEST) -I $(srcdir) testsuite.at -o $@.tmp
        mv $@.tmp $@
 
index e44871c..5753ade 100644 (file)
@@ -18,6 +18,9 @@
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 # 02111-1307, USA.
 
+# We want a recent Autotest.
+m4_version_prereq([2.57])
+
 
 ## ------------------------------- ##
 ## Macros decoding Bison options.  ##
@@ -190,3 +193,14 @@ AT_CHECK([$CXX $CXXFLAGS $CPPFLAGS m4_default([$2], [$1.c]) -o $1],
 # So that we can run `./testsuite PREPARSER='valgrind -q' for instance.
 m4_define([AT_PARSER_CHECK],
 [AT_CHECK([$PREPARSER $1], [$2], [$3], [$4])])
+
+
+
+
+## ----------------------- ##
+## Launch the test suite.  ##
+## ----------------------- ##
+
+AT_INIT
+
+AT_TESTED([bison])
index 44cc841..cdf2791 100644 (file)
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 # 02111-1307, USA.
 
-# We want a recent Autotest.
-m4_version_prereq([2.57])
-
-# Helping macros.
-m4_include([local.at])
-
-AT_INIT
+# Initializes Autotest, imports macros etc.  It will trigger a warning
+# with Autoconf 2.58, because it includes this file automatically, but
+# it causes no real problem.
+m4_include([input.at])
 
-AT_TESTED([bison])
 
 # Testing resistance to user bugs.
 m4_include([input.at])