From: Ralf Wildenhues Date: Mon, 22 Oct 2007 05:24:46 +0000 (+0200) Subject: Fix typos in test names. X-Git-Tag: v2.62~186 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=906afff203ba1700363481fd7ddebc08c4f9df80;p=thirdparty%2Fautoconf.git Fix typos in test names. * tests/autotest.at (Backquote command substitution) (Multiline backquote command substitution) (Parenthetical command substitution) (Multiline parenthetical command substitution): Fix typos in test names. --- diff --git a/ChangeLog b/ChangeLog index f5732b14..e0c1f459 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-10-22 Ralf Wildenhues + + * tests/autotest.at (Backquote command substitution) + (Multiline backquote command substitution) + (Parenthetical command substitution) + (Multiline parenthetical command substitution): Fix typos in + test names. + 2007-10-21 Eric Blake * configure: Regenerate. @@ -4758,8 +4766,8 @@ * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine failure condition for `$(cmd)' style command substitutions. - (Parenthetical command substition, Multiline parenthetical - command substition): Use it. + (Parenthetical command substitution, Multiline parenthetical + command substitution): Use it. * doc/autoconf.texi (Special Shell Variables): Missing word. Reported by Keith Marshall . diff --git a/tests/autotest.at b/tests/autotest.at index 2114d0b7..54e74647 100644 --- a/tests/autotest.at +++ b/tests/autotest.at @@ -141,12 +141,12 @@ two' two ], [])]) -AT_CHECK_AT_TEST([Backquote command substition], +AT_CHECK_AT_TEST([Backquote command substitution], [AT_CHECK([echo `echo hi`], 0, [hi ], [])]) -AT_CHECK_AT_TEST([Multiline backquote command substition], +AT_CHECK_AT_TEST([Multiline backquote command substitution], [AT_DATA([myfile],[foo bar ]) @@ -154,12 +154,12 @@ bar bar ], [])]) -AT_CHECK_AT_TEST([Parenthetical command substition], +AT_CHECK_AT_TEST([Parenthetical command substitution], [AT_CHECK([echo $(echo hi)], 0, [hi ], [])], [AT_NO_CMDSUBST]) -AT_CHECK_AT_TEST([Multiline parenthetical command substition], +AT_CHECK_AT_TEST([Multiline parenthetical command substitution], [AT_DATA([myfile],[foo bar ])