]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/mktests.sh: Reword comments.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 6 Apr 2006 17:56:43 +0000 (17:56 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 6 Apr 2006 17:56:43 +0000 (17:56 +0000)
ChangeLog
tests/mktests.sh

index bdc7370c2f9f3e63e3873fbf0765b5f45061ef1f..d15b489f3cb1b0a14be48a89e23e888f427c53c7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * tests/mktests.sh: Reword comments.
+
        * tests/mktests.sh: Only skip internal macros starting with
        `_AC_' or `__AC_'.  Noted by Stepan Kasal.
        Update exclusion lists for the test suite to this end:
index 3b789a1ed55aaef46614dc0ee4ca9b0b2b797221..bccd89f4bfca252c671e6148b7ffa4abcf25c73d 100755 (executable)
@@ -21,8 +21,7 @@
 # 02110-1301, USA.
 
 # If we fail, clean up, but touch the output files.  We probably failed
-# because we used some non portable tool, but we just don't care: this
-# shell script is a maintainer tool, and we do expect good tools.
+# because we used some non-portable tool.
 
 as_me=`echo "$0" | sed 's,.*[\\/],,'`
 
@@ -54,16 +53,15 @@ LC_ALL=C export LC_ALL
 # requires
 # --------
 # Get the list of macros that are required: there is little interest
-# in testing them since they will be run but the guy who requires
-# them.
+# in testing them since they will be run by the guy who requires them.
 sed -n 's/dnl.*//;s/.*AC_REQUIRE(\[*\([a-zA-Z0-9_]*\).*$/\1/p' $src |
   sort -u >requires
 
 
 # exclude_list
 # ------------
-# Macros which must not be checked at all (not by ac-macros.at, nor
-# au-macros.at).
+# Macros which must not be checked at all (not with AT_CHECK_MACRO nor
+# AT_CHECK_AU_MACRO).
 exclude_list='
        # Not a macro name at all.
        /^$/ {next}
@@ -75,10 +73,10 @@ exclude_list='
 
 # ac_exclude_list
 # ---------------
-# The test `ac-macros.at' tries to run all the macros of Autoconf to check
-# for syntax problems, etc.  Not all the macros can be run without argument,
-# and some are already tested elsewhere.  AC_EXCLUDE_LIST must filter out
-# the macros we don't want to test in ac-macros.at.
+# We try to test all the Autoconf macros with AT_CHECK_MACRO to check
+# for syntax problems, etc.  Not every macros can be run without
+# arguments, and some are already tested elsewhere.  AC_EXCLUDE_LIST
+# filters out the macros we don't want to test.
 ac_exclude_list='
        # Internal macros are used elsewhere.
        /^_?_AC_/ {next}
@@ -149,6 +147,7 @@ ac_exclude_script="$exclude_list $ac_exclude_list {print}"
 
 # au_exclude_list
 # ---------------
+# Check all AU_DEFUN'ed macros with AT_CHECK_AU_MACRO, except these.
 au_exclude_list='
        # Empty.
        /^AC_C_CROSS|AC_PROG_CC_STDC$/ {next}