diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-02-23 13:07:57 +0100 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-02-23 20:25:47 +0100 |
commit | 5b44ce39c6a3648682e241c75be513fb68c42568 (patch) | |
tree | 839f475b3ca17f74bdf0b80c91e905ff9362f2f0 /tests/yacc-clean.test | |
parent | 2dfeef41c3a2045a6f54a75f710b8d7b930d4471 (diff) | |
download | automake-5b44ce39c6a3648682e241c75be513fb68c42568.tar.gz |
tests: quote 'like this', not `like this', as per GCS recommendation
This patch converts the automake testsuite and related files, to
the use of new quoting format 'like this' or "like this" rather
than `like this'.
This is done for consistency with the new recommendations in the GNU
Coding Standards, and, well, because I've come to actually prefer
the '...' and "..." quoting formats over the `...' one.
* tests/README: Update quoting format throughout. Remove some
"excessive" use of quoting, and throw in minor rewording where
appropriate.
* tests/Makefile.am: Likewise, for comments.
* tests/CheckListOfTests.am: Likewise.
* tests/defs-static.in: Likewise.
* tests/defs: Likewise.
* tests/trivial-test-driver: Likewise.
* Many tests/*.tap, tests/*.test and tests/*.sh files: Likewise,
and for the diagnostic and informational messages as well.
* tests/gen-testsuite-part: Likewise, and for the generated tests
as well.
Diffstat (limited to 'tests/yacc-clean.test')
-rwxr-xr-x | tests/yacc-clean.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/yacc-clean.test b/tests/yacc-clean.test index 4ecd5b1d0..530f87fb1 100755 --- a/tests/yacc-clean.test +++ b/tests/yacc-clean.test @@ -17,7 +17,7 @@ # Check that .c and .h files derived from non-distributed .y sources # are cleaned by "make clean", while .c and .h files derived from # distributed .y sources are cleaned by "make maintainer-clean". -# See also sister test `yacc-cxx-clean.test'. +# See also sister test 'yacc-cxx-clean.test'. required='cc yacc' . ./defs || Exit 1 @@ -30,7 +30,7 @@ AC_OUTPUT END cat > Makefile.am << 'END' -# Use two subdirectories, one to test with `-d' in YFLAGS, the +# Use two subdirectories, one to test with '-d' in YFLAGS, the # other one to test with empty YFLAGS. SUBDIRS = sub1 sub2 END @@ -131,7 +131,7 @@ for target in clean distclean; do done cp config.sav config.status -./config.status # Re-create `Makefile'. +./config.status # Re-create 'Makefile'. $MAKE maintainer-clean ls -l . sub1 sub2 |