]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/mktests.sh: Only skip internal macros starting with
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 6 Apr 2006 17:55:21 +0000 (17:55 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 6 Apr 2006 17:55:21 +0000 (17:55 +0000)
`_AC_' or `__AC_'.  Noted by Stepan Kasal.
Update exclusion lists for the test suite to this end:
(AC_ARG_VAR): Do test this now.
(AC_REPLACE_FUNCS): This needs an argument.
(AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
(AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
(AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).

ChangeLog
tests/mktests.sh

index 6b66c8ddbb25fea6c1cb5f47d3196915bad435a6..bdc7370c2f9f3e63e3873fbf0765b5f45061ef1f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * 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:
+       (AC_ARG_VAR): Do test this now.
+       (AC_REPLACE_FUNCS): This needs an argument.
+       (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
+       (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
+       (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
+
        * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
        shell issue with double-quoted command substitutions of native
        commands.
index ac024cd633da51128b6e4881a07c37d0bcab6543..3b789a1ed55aaef46614dc0ee4ca9b0b2b797221 100755 (executable)
@@ -81,15 +81,7 @@ exclude_list='
 # the macros we don't want to test in ac-macros.at.
 ac_exclude_list='
        # Internal macros are used elsewhere.
-       /_AC_/ {next}
-
-       # Dunno why these are ignored.
-       /^AC_ARG_VAR$/ {next}
-       /^AC_LINKER_OPTION$/ {next}
-       /^AC_LINK_FILES$/ {next}
-       /^AC_LIST_MEMBER_OF$/ {next}
-       /^AC_REPLACE_FUNCS$/ {next}
-       /^AC_SEARCH_LIBS$/ {next}
+       /^_?_AC_/ {next}
 
        # Used in many places.
        /^AC_.*_IFELSE$/ {next}
@@ -99,6 +91,7 @@ ac_exclude_list='
 
        # Need an argument.
        /^AC_CANONICALIZE|AC_PREFIX_PROGRAM|AC_PREREQ$/ {next}
+       /^AC_SEARCH_LIBS|AC_REPLACE_FUNCS$/ {next}
 
        # Performed in the semantics tests.
        /^AC_CHECK_(ALIGNOF|DECL|FILE|FUNC|HEADER|LIB|MEMBER|PROG|SIZEOF|(TARGET_)?TOOL|TYPE)S?$/ {next}