summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
de76abc)
* configure.in: Bump to 1.49a.
Adjust to newer Autotest.
+2001-11-01 Akim Demaille <akim@epita.fr>
+
+ * tests/calc.at: Catch up with 1.30.
+ * configure.in: Bump to 1.49a.
+ Adjust to newer Autotest.
+
2001-10-19 Pascal Bart <pascal.bart@epita.fr>
* src/conflicts.c: Move global variables rrc_total and src_total ...
2001-10-19 Pascal Bart <pascal.bart@epita.fr>
* src/conflicts.c: Move global variables rrc_total and src_total ...
-Changes in version 1.29e:
+Changes in version 1.49a:
+\f
+Changes in version 1.30:
* `--defines' and `--graph' have now an optionnal argument which is the
output file name. `-d' and `-g' do not change, they do not take any
* `--defines' and `--graph' have now an optionnal argument which is the
output file name. `-d' and `-g' do not change, they do not take any
* `%source_extension' and `%header_extension' are removed, failed
experiment.
* `%source_extension' and `%header_extension' are removed, failed
experiment.
-* The test suite is more portable.
-
-* Better portability.
-
+* Portability fixes.
+\f
Changes in version 1.29:
* The output file does not define const, as this caused problems when used
Changes in version 1.29:
* The output file does not define const, as this caused problems when used
* New directives.
`%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
`%debug', `%source_extension' and `%header_extension'.
* New directives.
`%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
`%debug', `%source_extension' and `%header_extension'.
+
+* @$
+ Automatic location tracking.
\f
Changes in version 1.28:
\f
Changes in version 1.28:
# We need a recent Autoconf to run a recent Autotest.
AC_PREREQ(2.52e)
# We need a recent Autoconf to run a recent Autotest.
AC_PREREQ(2.52e)
-AC_INIT([GNU Bison], [1.29d], [bug-bison@gnu.org])
+AC_INIT([GNU Bison], [1.49a], [bug-bison@gnu.org])
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_AUX_DIR(config)
-AM_INIT_AUTOMAKE([bison], [1.29d])
+AM_INIT_AUTOMAKE([bison], [1.49a])
AM_CONFIG_HEADER(config.h:config.hin)
# Initialize the test suite.
AC_CONFIG_TESTDIR(tests)
AM_CONFIG_HEADER(config.h:config.hin)
# Initialize the test suite.
AC_CONFIG_TESTDIR(tests)
+AC_CONFIG_FILES(tests/Makefile tests/atlocal)
AC_CONFIG_FILES([tests/bison], [chmod +x tests/bison])
# Needed by tests/atlocal.in.
AC_SUBST([GCC])
AC_CONFIG_FILES([tests/bison], [chmod +x tests/bison])
# Needed by tests/atlocal.in.
AC_SUBST([GCC])
config/Makefile
intl/Makefile po/Makefile.in
lib/Makefile src/Makefile doc/Makefile
config/Makefile
intl/Makefile po/Makefile.in
lib/Makefile src/Makefile doc/Makefile
- m4/Makefile
- tests/Makefile])
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
## 02111-1307, USA.
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
## 02111-1307, USA.
-EXTRA_DIST = atlocal.in $(TESTSUITE_AT) testsuite
+EXTRA_DIST = $(TESTSUITE_AT) testsuite
DISTCLEANFILES = atconfig atlocal bison package.m4
MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
DISTCLEANFILES = atconfig atlocal bison package.m4
MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
atconfig: $(top_builddir)/config.status
cd $(top_builddir) && ./config.status tests/$@
atconfig: $(top_builddir)/config.status
cd $(top_builddir) && ./config.status tests/$@
-atlocal: $(srcdir)/atlocal.in $(top_builddir)/config.status
- cd $(top_builddir) && ./config.status tests/$@
-
clean-local:
$(SHELL) $(TESTSUITE) --clean
clean-local:
$(SHELL) $(TESTSUITE) --clean
# Produce `calc.y'.
m4_define([AT_DATA_CALC_Y],
[_AT_DATA_CALC_Y($[1], $[2], $[3],
# Produce `calc.y'.
m4_define([AT_DATA_CALC_Y],
[_AT_DATA_CALC_Y($[1], $[2], $[3],
- [m4_match([$1], [--yyerror-verbose],
- [[#define YYERROR_VERBOSE 1]])])])
+ [m4_bmatch([$1], [--yyerror-verbose],
+ [[#define YYERROR_VERBOSE]])])])
# warnings, but this place is not the right one for that.
# So let's keep only GCC warnings, which we know are sane.
AT_CHECK([$CC $CFLAGS $CPPFLAGS calc.c -o calc], 0, [], [stderr])
# warnings, but this place is not the right one for that.
# So let's keep only GCC warnings, which we know are sane.
AT_CHECK([$CC $CFLAGS $CPPFLAGS calc.c -o calc], 0, [], [stderr])
-AT_CHECK([test "$GCC" = yes && cat stderr])
+AT_CHECK([if test "$GCC" = yes; then cat stderr; else true; fi])
# Test the priorities.
_AT_CHECK_CALC([$1],
# Test the priorities.
_AT_CHECK_CALC([$1],