]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: improve few inter-tests references
authorStefano Lattarini <stefano.lattarini@gmail.com>
Tue, 3 May 2011 09:29:44 +0000 (11:29 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Tue, 3 May 2011 09:31:13 +0000 (11:31 +0200)
* tests/acloca22.test: Improve and extend the heading comments.
Add reference to related tests 'remake-deleted-m4-file.test' and
'remake-renamed-m4-macro-and-file.test'.  Since we are at it,
add trailing `:' command, and few blank lines for readability.
* tests/remake-renamed-m4-macro-and-file.test: In the heading
comments, add reference to the related test 'acloca22.test'.

ChangeLog
tests/acloca22.test
tests/remake-renamed-m4-macro-and-file.test

index 48c8acca335d441b106669c3a1435f4fcaf7abd6..8fe10670b9efd39eec59b194d25f4877032f518b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2011-05-03  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       tests: improve few inter-tests references
+       * tests/acloca22.test: Improve and extend the heading comments.
+       Add reference to related tests 'remake-deleted-m4-file.test' and
+       'remake-renamed-m4-macro-and-file.test'.  Since we are at it,
+       add trailing `:' command, and few blank lines for readability.
+       * tests/remake-renamed-m4-macro-and-file.test: In the heading
+       comments, add reference to the related test 'acloca22.test'.
+
 2011-05-03  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        tests: fix spurious failure in 'color2.test'
index 8fbd57f287dc10d2e996483be71b83cd7a1436cf..cf166275679d6ee29ab9cd454a92bbc466b174ab 100755 (executable)
@@ -14,8 +14,9 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-# Make sure the "deleted header file" issue is fixed wrt. aclocal.m4
-# dependencies.
+# Make sure the "deleted header file" issue is fixed w.r.t. aclocal.m4
+# dependencies.  See also related the tests `remake-deleted-m4-file.test'
+# and 'remake-renamed-m4-macro-and-file.test'.
 
 . ./defs || Exit 1
 
@@ -32,16 +33,21 @@ EOF
 cat >Makefile.am <<EOF
 ACLOCAL_AMFLAGS = -I .
 EOF
+
 $ACLOCAL -I .
 $AUTOMAKE
 $AUTOCONF
+
 ./configure
 $MAKE
 grep GREPFOO Makefile
 grep GREPBAR Makefile && Exit 1
+
 sed 's/FOO/BAR/' < configure.in > t
 mv -f t configure.in
 rm -f foo.m4
 $MAKE
 grep GREPFOO Makefile && Exit 1
 grep GREPBAR Makefile
+
+:
index beedb5844f76dfc8cb3196ab0ce633b15901ea17..3c1f86747caea23b8077e16ad874b7823901dd3c 100755 (executable)
@@ -16,7 +16,7 @@
 
 # Test remake rules when an m4 file gets renamed and *simultaneously*
 # an m4 macro in it gets renamed.  Kudos to Bruno Haible for thinking
-# about this situation.
+# about this situation.  See also related test `acloca22.test'.
 
 . ./defs || Exit 1