summaryrefslogtreecommitdiff
path: root/tests/remake9d.test
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2011-07-16 00:19:56 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2011-07-18 10:37:51 +0200
commit0ea1177e8ea22fbb74ae1797d743e34f08337508 (patch)
tree10dde596c2b83220625cd2d87c754149739537c3 /tests/remake9d.test
parentf37035c3296ce3f199d3ea004cc4fe9042359c2d (diff)
downloadautomake-0ea1177e8ea22fbb74ae1797d743e34f08337508.tar.gz
tests: fix typos, grammaros and other blunders in comments
Diffstat (limited to 'tests/remake9d.test')
-rwxr-xr-xtests/remake9d.test16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/remake9d.test b/tests/remake9d.test
index b18db2a05..ae6183598 100755
--- a/tests/remake9d.test
+++ b/tests/remake9d.test
@@ -57,9 +57,9 @@ cat > foo.in <<END
echo '@FINGERPRINT@'
END
-echo cat > tweak-aclocal-m4 # no-op by default
+echo cat > tweak-aclocal-m4 # It is a no-op by default.
-$sleep # so that generated autotools files will be newer than prerequisites
+$sleep # So that generated autotools files will be newer than prerequisites.
$ACLOCAL
# Cheatingly mark aclocal.m4 as non auto-generated.
sed '/^ *#.*generated automatically/d' aclocal.m4 > t
@@ -78,12 +78,12 @@ for vpath in : false; do
fi
$srcdir/configure
- $MAKE # should be no-op
+ $MAKE # Should be a no-op.
$sleep
echo "AC_DEFUN([my_fingerprint], [$magic1])dnl %%%" >> $srcdir/aclocal.m4
remake_
- $FGREP FINGERPRINT Makefile # for debugging
+ $FGREP FINGERPRINT Makefile # For debugging.
$FGREP $magic1 Makefile
test x"`./foo.sh`" = x"$magic1"
@@ -91,18 +91,18 @@ for vpath in : false; do
echo "sed 's/.*dnl *%%%.*/AC_DEFUN([my_fingerprint], [$magic2])/'" \
> $srcdir/tweak-aclocal-m4
remake_
- $FGREP FINGERPRINT Makefile # for debugging
+ $FGREP FINGERPRINT Makefile # For debugging.
$FGREP $magic1 Makefile && Exit 1
$FGREP $magic2 Makefile
test x"`./foo.sh`" = x"$magic2"
$sleep
- echo cat > $srcdir/tweak-aclocal-m4 # no-op again
+ echo cat > $srcdir/tweak-aclocal-m4 # Make it a no-op again.
echo 'AC_DEFUN([my_fingerprint], [DummyValue])' >> $srcdir/aclocal.m4
using_gmake || remake_
$MAKE distcheck
- $FGREP $magic1 Makefile && Exit 1 # sanity check
- $FGREP $magic2 Makefile && Exit 1 # likewise
+ $FGREP $magic1 Makefile && Exit 1 # Sanity check.
+ $FGREP $magic2 Makefile && Exit 1 # Likewise.
$MAKE distclean