diff --git a/ChangeLog b/ChangeLog index 6197e3f6..8a78f880 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-12-19 Akim Demaille + + * tests/atgeneral.m4 (AT_BANNER, AT_CLEANUP): Formatting changes. + 2000-12-18 Pavel Roskin * Makefile.am: Add a comment explaining why suffix rules are not diff --git a/lib/autotest/general.m4 b/lib/autotest/general.m4 index 03ba0157..433fd1ec 100644 --- a/lib/autotest/general.m4 +++ b/lib/autotest/general.m4 @@ -373,6 +373,7 @@ m4_define([AT_CLEANUP], ) at_status=$? ;; + m4_divert([TESTS])[]dnl at_data_files="AT_data_files" m4_undivert([TEST])[]dnl @@ -395,6 +396,7 @@ $1 _ATEOF ;; + m4_divert_pop()dnl ])# AT_BANNER diff --git a/tests/Makefile.am b/tests/Makefile.am index ad81c21d..cb21a7a1 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -22,7 +22,8 @@ AUTOMAKE_OPTIONS = gnits SUITE = suite.at \ m4sugar.at m4sh.at \ - base.at tools.at torture.at compile.at semantics.at syntax.at update.at + base.at tools.at torture.at compile.at semantics.at syntax.at \ + update.at foreign.at # We don't actually distribute the testsuite, since one only # needs m4 to build it, m4 being required anyway to install Autoconf. diff --git a/tests/Makefile.in b/tests/Makefile.in index af3a1d4b..e98b48c8 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -66,7 +66,7 @@ standards_texi = @standards_texi@ AUTOMAKE_OPTIONS = gnits -SUITE = suite.at m4sugar.at m4sh.at base.at tools.at torture.at compile.at semantics.at syntax.at update.at +SUITE = suite.at m4sugar.at m4sh.at base.at tools.at torture.at compile.at semantics.at syntax.at update.at foreign.at # We don't actually distribute the testsuite, since one only @@ -83,7 +83,8 @@ CLEANFILES = debug-*.sh macro configure configure.in config.status DISTCLEANFILES = atconfig testsuite mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_CLEAN_FILES = atconfig -DIST_COMMON = README Makefile.am Makefile.in atconfig.in +DIST_COMMON = README Makefile.am Makefile.in atconfig.in config.guess \ +config.sub ltconfig ltmain.sh PACKAGE = @PACKAGE@ diff --git a/tests/atgeneral.m4 b/tests/atgeneral.m4 index 03ba0157..433fd1ec 100644 --- a/tests/atgeneral.m4 +++ b/tests/atgeneral.m4 @@ -373,6 +373,7 @@ m4_define([AT_CLEANUP], ) at_status=$? ;; + m4_divert([TESTS])[]dnl at_data_files="AT_data_files" m4_undivert([TEST])[]dnl @@ -395,6 +396,7 @@ $1 _ATEOF ;; + m4_divert_pop()dnl ])# AT_BANNER diff --git a/tests/suite.at b/tests/suite.at index 2789dcae..42cf7383 100644 --- a/tests/suite.at +++ b/tests/suite.at @@ -46,3 +46,6 @@ m4_include([syntax.at]) # Checking that updating an obsolete macro produces a valid configure.in m4_include([update.at]) + +# Compatibility with foreign tools. +m4_include([foreign.at])