]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix some testsuite failures introduced two days ago.
authorEric Blake <ebb9@byu.net>
Sat, 18 Oct 2008 12:48:55 +0000 (06:48 -0600)
committerEric Blake <ebb9@byu.net>
Sat, 18 Oct 2008 12:50:08 +0000 (06:50 -0600)
* tests/m4sh.at (Nested AS@&t@_REQUIRE_SHELL_FN)
(AS@&t@_REQUIRE_SHELL_FN and m4@&t@_require): Adjust to changed
API.
Reported by Ralf Wildenhues.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
tests/m4sh.at

index f2c336eacb278613f5acfd23b27b3a84fcc58cdc..d971b1886f55b610f6ad261b5356d3e628f29c4a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-10-18  Eric Blake  <ebb9@byu.net>
+
+       Fix some testsuite failures introduced two days ago.
+       * tests/m4sh.at (Nested AS@&t@_REQUIRE_SHELL_FN)
+       (AS@&t@_REQUIRE_SHELL_FN and m4@&t@_require): Adjust to changed
+       API.
+       Reported by Ralf Wildenhues.
+
 2008-10-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        Show how to extract single substitutions from config.status.
index 73438fb7d2aaa5dc25dbb58d1cd5134c6e2b13fa..c39c8c1d1067453d7cdcfbe5e34cd88b400ee7e1 100644 (file)
@@ -522,11 +522,11 @@ m4_defun([TEST_FUNC2_BODY], [
 ])
 
 m4_defun([TEST_FUNC1_BODY], [
-AS_REQUIRE_SHELL_FN([test_func2], [TEST_FUNC2_BODY])
+AS_REQUIRE_SHELL_FN([test_func2], [], [TEST_FUNC2_BODY])
 :
 ])
 
-AS_REQUIRE_SHELL_FN([test_func1], [TEST_FUNC1_BODY])
+AS_REQUIRE_SHELL_FN([test_func1], [], [TEST_FUNC1_BODY])
 test_func2
 ]])
 
@@ -566,7 +566,7 @@ m4_require([error_if_emitted_in_m4sh_init])
 
 m4_defun([test_init], [
 AS_REQUIRE([in_m4_sh_init], , [M4SH-INIT-FN])
-AS_REQUIRE_SHELL_FN([test_func], [TEST_FUNC_BODY])
+AS_REQUIRE_SHELL_FN([test_func], [], [TEST_FUNC_BODY])
 AS_REQUIRE([not_in_m4_sh_init])
 ])