]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/autotest.at (Backquote command substitution),
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 9 Apr 2006 05:36:45 +0000 (05:36 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 9 Apr 2006 05:36:45 +0000 (05:36 +0000)
(Multiline backquote command substitution): Remove mistaken
AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
applied...
(Parenthetical command substitution, Multiline parenthetical
command substitution): here.

ChangeLog
tests/autotest.at

index ccac2bfac00a5089e363da1d6de9f5012650bc11..73ac7189a8187b949bd304b6be8b8ccca163aaeb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2006-04-09  Eric Blake  <ebb9@byu.net>
+
+       * tests/autotest.at (Backquote command substitution),
+       (Multiline backquote command substitution): Remove mistaken
+       AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
+       applied...
+       (Parenthetical command substitution, Multiline parenthetical
+       command substitution): here.
+
 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
 
        Import macros from gnulib (often changing their name).
index 0be616b48749d30d8cbf20e25c9142d0105eacad..2f5c4fd7d57c5352d10d0417777b85f2952e1fe5 100644 (file)
@@ -110,8 +110,7 @@ two
 
 AT_CHECK_AT_TEST([Backquote command substition],
   [AT_CHECK([echo `echo hi`], 0, [hi
-], [])],
-  [AT_NO_CMDSUBST])
+], [])])
 
 
 AT_CHECK_AT_TEST([Multiline backquote command substition],
@@ -120,12 +119,12 @@ bar
 ])
    AT_CHECK([echo "`cat myfile`"], 0, [foo
 bar
-], [])],
-  [AT_NO_CMDSUBST])
+], [])])
 
 AT_CHECK_AT_TEST([Parenthetical command substition],
   [AT_CHECK([echo $(echo hi)], 0, [hi
-], [])])
+], [])],
+  [AT_NO_CMDSUBST])
 
 AT_CHECK_AT_TEST([Multiline parenthetical command substition],
   [AT_DATA([myfile],[foo
@@ -133,7 +132,8 @@ bar
 ])
    AT_CHECK([echo "$(cat myfile)"], 0, [foo
 bar
-], [])])
+], [])],
+  [AT_NO_CMDSUBST])
 
 
 ## ------------------------- ##