From: Stefano Lattarini Date: Thu, 23 Feb 2012 12:07:57 +0000 (+0100) Subject: tests: quote 'like this', not `like this', as per GCS recommendation X-Git-Tag: v1.11b~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b44ce39c6a3648682e241c75be513fb68c42568;p=thirdparty%2Fautomake.git 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. --- diff --git a/tests/CheckListOfTests.am b/tests/CheckListOfTests.am index ecd777ca9..a3913f2cd 100644 --- a/tests/CheckListOfTests.am +++ b/tests/CheckListOfTests.am @@ -16,7 +16,7 @@ ## along with this program. If not, see . ## -## Temporary files used in the `check-list-of-tests' target. +## Temporary files used in the 'check-list-of-tests' recipe. am__tmk = tests-in-makefile-list.tmp am__tfs = tests-on-filesystem-list.tmp am__tdf = diff-in-tests-lists.tmp diff --git a/tests/Makefile.am b/tests/Makefile.am index 8a77681fc..b25c1f4f5 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -71,13 +71,13 @@ AM_TESTS_ENVIRONMENT = \ ; do \ eval test x"\$${$$v}" = x || unset $$v; \ done; -# The `AM_TESTS_REEXEC=no' setting tells the tests not to needlessly +# The 'AM_TESTS_REEXEC=no' setting tells the tests not to needlessly # re-execute themselves with the shell detected at configure time, since # we are already running them under it explicitly in our setup (see e.g. # the definition of TEST_LOG_COMPILER above). AM_TESTS_ENVIRONMENT += AM_TESTS_REEXEC=no; export AM_TESTS_REEXEC; # We want warning messages and explanations for skipped tests to go to -# the console if possible, so set up `stderr_fileno_' properly. +# the console if possible, so set up 'stderr_fileno_' properly. AM_TESTS_FD_REDIRECT = 9>&2 AM_TESTS_ENVIRONMENT += stderr_fileno_=9; export stderr_fileno_; @@ -210,8 +210,8 @@ clean-local-check: rm -rf "$$@"; \ fi; -## Run the testsuite through the `prove' utility. Mostly for maintainers, -## and to find out possible incompatibilities between `prove' and the +## Run the testsuite through the 'prove' utility. Mostly for maintainers, +## and to find out possible incompatibilities between 'prove' and the ## Automake own TAP driver. PROVE = prove @@ -276,7 +276,7 @@ prove installprove: $(TESTS) prove-runner defs-static echo $(srcdir)/$$t; \ fi; \ done`; \ -## Extra environment, mostly for use by `prove-runner'. +## Extra environment, mostly for use by 'prove-runner'. ## XFAIL_TESTS gets normalized to play nicer with VPATH builds. XFAIL_TESTS=`\ for t in $(XFAIL_TESTS); do \ diff --git a/tests/README b/tests/README index 9d0b4f23f..42afa2c35 100644 --- a/tests/README +++ b/tests/README @@ -12,7 +12,7 @@ Running the tests make -k check - You can use `-jN' for faster completion (it even helps on a + You can use '-jN' for faster completion (it even helps on a uniprocessor system, due to unavoidable sleep delays, as noted below). @@ -37,8 +37,8 @@ Running the tests ./configure --host i586-mingw32msvc --build i686-pc-linux-gnu To avoid possible spurious error, you really have to *explicitly* specify - `--build' in addition to `--host'; the `lib/config.guess' script can help - determine the correct value to pass to `--build'. + '--build' in addition to '--host'; the 'lib/config.guess' script can help + determine the correct value to pass to '--build'. Then you can just run the testsuite in the usual way, and the test cases using a compiler should automatically use a cross-compilation setup. @@ -62,9 +62,9 @@ Interpretation Getting details from failures ----------------------------- - By default, verbose output of a test `foo.test' or `foo.tap' is - retained in the log file `foo.log'. A summary log is created in - the file `test-suite.log'. + By default, verbose output of a test 'foo.test' or 'foo.tap' is + retained in the log file 'foo.log'. A summary log is created in + the file 'test-suite.log'. You can limit the set of files using the TESTS variable, and enable detailed test output at the end of the test run with the VERBOSE @@ -79,9 +79,9 @@ About the tests --------------- There are two kinds of tests in the Automake testsuite (both implemented - as shell scripts). The scripts with the `.test' suffix are "simple" + as shell scripts). The scripts with the '.test' suffix are "simple" tests, their outcome completely determined by their exit status. Those - with the `.tap' suffix use the TAP protocol. If you want to run a test + with the '.tap' suffix use the TAP protocol. If you want to run a test by hand, you can do so directly if it is a simple test: ./nogzip.test @@ -103,7 +103,7 @@ Supported shells By default, the tests are run by the $SHELL detected at configure time. They also take care to re-execute themselves with that shell, unless told not to. So, to run the tests with a different shell, say - `/path/to/another/sh', the user must use: + '/path/to/another/sh', the user must use: AM_TESTS_REEXEC=no /path/to/another/sh ./foo.test AM_TESTS_REEXEC=no prove -v -e /path/to/another/sh ./bar.tap @@ -120,16 +120,17 @@ Supported shells However, some care must be used with Zsh, since, when not directly started in Bourne-compatibility mode, it has some incompatibilities - in the handling of `$0' which conflict with our usage. Our testsuite + in the handling of $0 which conflict with our usage. Our testsuite can automatically work around these incompatibilities when a version 4.3 or later of Zsh is used, but unfortunately not when an older version of Zsh is used. Thus, if you want to run a test script, say - foo.test, with Zsh 4.2, you *can't* simply do `zsh foo.test', but + foo.test, with Zsh 4.2, you *can't* simply do "zsh foo.test", but you *must* resort to: + AM_TESTS_REEXEC=no zsh -o no_function_argzero foo.test Note that this problem does not occur if Zsh is executed through - a symlink with a basename of `sh', since in that case Zsh starts + a symlink with a basename of 'sh', since in that case Zsh starts in Bourne compatibility mode. So you should be perfectly safe when /bin/sh is Zsh, even a it's version < 4.3. @@ -169,34 +170,34 @@ Do ... @end example - Use `required=...' for required tools. Do not explicitly require + Use "required=..." for required tools. Do not explicitly require tools which can be taken for granted because they're listed in the - GNU Coding Standards (for example, `gzip'). + GNU Coding Standards (for example, 'gzip'). Include ./defs in every test script (see existing tests for examples of how to do this). - Use the `skip_' function to skip tests, with a meaningful message if - possible. Where convenient, use the `warn_' function to print generic - warnings, the `fail_' function for test failures, and the `fatal_' + Use the 'skip_' function to skip tests, with a meaningful message if + possible. Where convenient, use the 'warn_' function to print generic + warnings, the 'fail_' function for test failures, and the 'fatal_' function for hard errors. In case a hard error is due to a failed - set-up of a test scenario, you can use the `framework_fail_' function + set-up of a test scenario, you can use the 'framework_fail_' function instead. - For tests that use the `parallel-tests' Automake option, set the shell - variable `am_parallel_tests' to "yes" before including ./defs. For tests - that are *not* meant to work with the `parallel-tests' Automake option - (these should be very very few), set the shell variable `am_parallel_tests' - to "no" before including ./defs. + For tests that use the 'parallel-tests' Automake option, set the shell + variable 'am_parallel_tests' to "yes" before including ./defs. For + tests that are *not* meant to work with the 'parallel-tests' Automake + option (these should be very very few), set the shell variable + 'am_parallel_tests' to "no" before including ./defs. Some tests in the Automake testsuite are auto-generated; those tests might have custom extensions, but their basename (that is, with such extension stripped) is expected to end with "-w" string, optionally followed by decimal digits. For example, the name of a valid - auto-generated test can be `color-w.test' or `tap-signal-w09.tap'. + auto-generated test can be 'color-w.test' or 'tap-signal-w09.tap'. Please don't name hand-written tests in a way that could cause them - to be confused with auto-generated tests; for example, `u-v-w.test' - or `option-w0.tap' are *not* valid name for hand-written tests. + to be confused with auto-generated tests; for example, 'u-v-w.test' + or 'option-w0.tap' are *not* valid name for hand-written tests. ./defs brings in some commonly required files, and sets a skeleton configure.ac. If possible, append to this file. In some cases @@ -204,19 +205,19 @@ Do that configure.ac registers Makefile.in but do not output anything by default. If you need ./configure to create Makefile, append AC_OUTPUT to configure.ac. In case you don't want ./defs to pre-populate your - test directory (which is a rare occurrence), set `$am_create_testdir' - to "empty" before sourcing ./defs. + test directory (which is a rare occurrence), set the 'am_create_testdir' + shell variable to "empty" before sourcing ./defs. - By default, the testcases are run with the `errexit' shell flag on, + By default, the testcases are run with the errexit shell flag on, to make it easier to catch failures you might not have thought of. - If this is undesirable in some testcase, you can use `set +e' to - disable the `errexit' flag (but please do so only if you have a - very good reason). + If this is undesirable in some testcase, you can use "set +e" to + disable the errexit flag (but please do so only if you have a very + good reason). - End the test script with a `:' or `Exit 0'. Otherwise, when somebody + End the test script with a ":" or "Exit 0". Otherwise, when somebody changes the test by adding a failing command after the last command, the test will spuriously fail because $? is nonzero at the end. Note - that this is relevant even if the `errexit' shell flag is on, in case + that this is relevant even if the errexit shell flag is on, in case the test contains commands like "grep ... Makefile.in && Exit 1" (and there are indeed a lot of such tests). @@ -227,28 +228,29 @@ Do Use $sleep when you have to make sure that some file is newer than another. - Use `cat' or `grep' to display (part of) files that may be interesting - for debugging, so that when a user send a verbose output we don't have - to ask him for more details. Display stderr output on the stderr file - descriptor. If some redirected command is likely to fail, display its - output even in the failure case, before exiting. + Use cat or grep or similar commands to display (part of) files that + may be interesting for debugging, so that when a user send a verbose + output we don't have to ask him for more details. Display stderr + output on the stderr file descriptor. If some redirected command is + likely to fail, display its output even in the failure case, before + exiting. - Use `Exit' rather than `exit' to abort a test. + Use 'Exit' rather than 'exit' to abort for leave early from a test + case. - Use `$PATH_SEPARATOR', not hard-coded `:', as the separator of + Use '$PATH_SEPARATOR', not hard-coded ':', as the separator of PATH's entries. - It's more important to make sure that a feature works, than - make sure that Automake's output looks correct. It might look - correct and still fail to work. In other words, prefer - running `make' over grepping `Makefile.in' (or do both). + It's more important to make sure that a feature works, than make + sure that Automake's output looks correct. It might look correct + and still fail to work. In other words, prefer running 'make' over + grepping Makefile.in (or do both). - If you run $AUTOMAKE or $AUTOCONF several times in the same test - and change `configure.ac' by the meantime, do - rm -rf autom4te.cache - before the following runs. On fast machines the new `configure.ac' - could otherwise have the same timestamp as the old `autom4te.cache'. - Alternatively, use `--force' for subsequent runs of the tools. + If you run $ACLOCAL, $AUTOMAKE or $AUTOCONF several times in the + same test and change configure.ac by the meantime, do + rm -rf autom4te*.cache + before the following runs. On fast machines the new configure.ac + could otherwise have the same timestamp as the old autom4te.cache. Use filenames with two consecutive spaces when testing that some code preserves filenames with spaces. This will catch errors like @@ -257,9 +259,9 @@ Do Make sure your test script can be used to faithfully check an installed version of automake (as with "make installcheck"). For example, if you need to copy or grep an automake-provided script, - do not assume that they can be found in the `$top_srcdir/lib' - directory, but use `$am_scriptdir' instead. The complete list of - such `$am_..dir' variables can be found in tests/defs-static.in. + do not assume that they can be found in the '$top_srcdir/lib' + directory, but use '$am_scriptdir' instead. The complete list of + such "$am_...dir" variables can be found in tests/defs-static.in. Before commit: make sure the test is executable, add the tests to TESTS in Makefile.am, add it to XFAIL_TESTS in addition if needed, @@ -269,18 +271,17 @@ Do Do not ------ - Do not test an Automake error with `$AUTOMAKE && Exit 1', or in three + Do not test an Automake error with "$AUTOMAKE && Exit 1", or in three years we'll discover that this test failed for some other bogus reason. This happened many times. Better use something like AUTOMAKE_fails grep 'expected diagnostic' stderr - (Note this doesn't prevent the test from failing for another - reason, but at least it makes sure the original error is still - here.) + (Note this doesn't prevent the test from failing for another reason, + but at least it makes sure the original error is still here). Do not override Makefile variables using make arguments, as in e.g.: $MAKE prefix=/opt install This is not portable for recursive targets (targets that call a - sub-make may not pass `prefix=/opt' along). Use the following + sub-make may not pass "prefix=/opt" along). Use the following instead: prefix=/opt $MAKE -e install diff --git a/tests/ac-output-old.tap b/tests/ac-output-old.tap index 2d000c59a..5c906a2f0 100755 --- a/tests/ac-output-old.tap +++ b/tests/ac-output-old.tap @@ -28,11 +28,11 @@ rm -f configure.ac depcomp # Not required. # Test for bug reported by François Pinard. # If \ is in AC_OUTPUT, automake barfs. -# This was the old test `acoutbs.test'. +# This was the old test 'acoutbs.test'. # Also test for bug reported by David A. Swierczek. # Another bug with \ in AC_OUTPUT (this time with whitespace). -# This was the old test `acoutbs2.test'. +# This was the old test 'acoutbs2.test'. acoutbs_check () { @@ -77,7 +77,7 @@ END # AC_OUTPUT(Makefile src/Makefile tests/Makefile, echo timestamp > stamp-h)dnl # automake is not happy: # [ ... ] -# This was the old test `acoutnoq.test'. +# This was the old test 'acoutnoq.test'. mkdir acoutnoq cd acoutnoq @@ -99,7 +99,7 @@ cd .. # Test for bug when AC_OUTPUT has 2 args on the same line, eg: # AC_OUTPUT([Makefile automake tests/Makefile],[chmod +x automake]) -# This was the old test `acoutpt.test'. +# This was the old test 'acoutpt.test'. mkdir acoutpt cd acoutpt @@ -120,7 +120,7 @@ cd .. # ----------------------------------------------------------------------- # Test for bug reported by Eric Magnien. -# This was the old test `acoutpt2.test'. +# This was the old test 'acoutpt2.test'. mkdir acoutpt2 cd acoutpt2 @@ -155,7 +155,7 @@ cd .. # ----------------------------------------------------------------------- # Test for bug reported by François Pinard. -# This was the old test `acoutqnl.test'. +# This was the old test 'acoutqnl.test'. mkdir acoutqnl cd acoutqnl diff --git a/tests/acloca10.test b/tests/acloca10.test index f00c2eb13..05db9b9ab 100755 --- a/tests/acloca10.test +++ b/tests/acloca10.test @@ -20,8 +20,8 @@ # # Also check for --install. -# TODO: write a sister test that doesn't use a `dirlist' file, but -# TODO: puts third-party macros directly into `acdir'. +# TODO: write a sister test that doesn't use a 'dirlist' file, but +# TODO: puts third-party macros directly into 'acdir'. am_create_testdir=empty . ./defs || Exit 1 diff --git a/tests/acloca14.test b/tests/acloca14.test index db20def0a..ba1f07228 100755 --- a/tests/acloca14.test +++ b/tests/acloca14.test @@ -109,7 +109,7 @@ $MAKE $FGREP defs/f.m4 aclocal.m4 $MAKE testdist2 -# Make sure aclocal diagnose missing included files with correct `file:line:'. +# Make sure aclocal diagnose missing included files with correct 'file:line:'. rm -f b.m4 $ACLOCAL 2>stderr && { cat stderr >&2; Exit 1; } cat stderr >&2 diff --git a/tests/acloca22.test b/tests/acloca22.test index d51c7f104..85ef29b4a 100755 --- a/tests/acloca22.test +++ b/tests/acloca22.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # 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' +# dependencies. See also related the tests 'remake-deleted-m4-file.test' # and 'remake-renamed-m4-macro-and-file.test'. . ./defs || Exit 1 diff --git a/tests/aclocal-acdir.test b/tests/aclocal-acdir.test index f969dcd71..88caef62f 100755 --- a/tests/aclocal-acdir.test +++ b/tests/aclocal-acdir.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test aclocal's `--acdir', `--automake-acdir' and `--system-acdir' +# Test aclocal's '--acdir', '--automake-acdir' and '--system-acdir' # options. Also check that stuff in the automake acdir takes precedence # over stuff in the system acdir. @@ -74,7 +74,7 @@ $FGREP 'my--macro' configure && Exit 1 # Just to be sure. rm -rf autom4te*.cache -# Obsolescent `--acdir' option. +# Obsolescent '--acdir' option. $ACLOCAL -Wobsolete --acdir am 2>stderr && { cat stderr >&2; Exit 1; } cat stderr >&2 grep '.*--acdir.*deprecated' stderr diff --git a/tests/aclocal-install-absdir.test b/tests/aclocal-install-absdir.test index 353304f6b..b07f7fac9 100755 --- a/tests/aclocal-install-absdir.test +++ b/tests/aclocal-install-absdir.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Make sure "aclocal --install" install files also in directories -# passed to `-I' as absolute paths. Now that we support the +# passed to '-I' as absolute paths. Now that we support the # ACLOCAL_PATH variable, it is clear that this is the right thing # to do. See also automake bug#8407. diff --git a/tests/aclocal-path-install-serial.test b/tests/aclocal-path-install-serial.test index 55d21e26f..8a2b22c59 100755 --- a/tests/aclocal-path-install-serial.test +++ b/tests/aclocal-path-install-serial.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# ACLOCAL_PATH, acdir and `--install' interactions when serial number +# ACLOCAL_PATH, acdir and '--install' interactions when serial number # are involved. am_create_testdir=empty @@ -41,7 +41,7 @@ win () case $1 in sdir) ok=sdir ko=pdir;; pdir) ok=pdir ko=sdir;; - *) fatal_ "win(): invalud argument \`$1'";; + *) fatal_ "win(): invalid argument '$1'";; esac # This is required on fast machine, to avoid caching and timestamp # issues with the autotools (already happened in practice). diff --git a/tests/aclocal-path-install.test b/tests/aclocal-path-install.test index e1c719c7a..a9a8b97c6 100755 --- a/tests/aclocal-path-install.test +++ b/tests/aclocal-path-install.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# ACLOCAL_PATH and `--install' interactions. +# ACLOCAL_PATH and '--install' interactions. am_create_testdir=empty . ./defs || Exit 1 @@ -37,14 +37,14 @@ cat > pdir/bar.m4 << 'END' AC_DEFUN([AM_BAR], [:]) END -# The `--install' option should never cause anything to be installed +# The '--install' option should never cause anything to be installed # in a directory specified in ACLOCAL_PATH. $ACLOCAL --install 2>stderr && { cat stderr >&2; Exit 1; } cat stderr >&2 grep ' no -I was supplied' stderr test ! -f pdir/foo.m4 -# The `--install' option should cause a required macro found in a +# The '--install' option should cause a required macro found in a # directory specified in ACLOCAL_PATH to be installed locally. echo AM_BAR >> configure.ac $ACLOCAL --install -I ldir diff --git a/tests/aclocal-path-precedence.test b/tests/aclocal-path-precedence.test index 26ff5f0d6..91d9a424c 100755 --- a/tests/aclocal-path-precedence.test +++ b/tests/aclocal-path-precedence.test @@ -71,18 +71,18 @@ $FGREP '::' configure # For debugging. # over those coming later. $FGREP '::pass-foo::' configure -# Directories from `-I' options should take precedence over directories +# Directories from '-I' options should take precedence over directories # in ACLOCAL_PATH. $FGREP '::pass-bar::' configure # Directories in ACLOCAL_PATH should take precedence over system acdir -# (typically `${prefix}/share/aclocal'), and any directory added through -# the `dirlist' special file. +# (typically '${prefix}/share/aclocal'), and any directory added through +# the 'dirlist' special file. $FGREP '::pass-gettext::' configure $FGREP '::pass-libtool::' configure # Directories in ACLOCAL_PATH shouldn't take precedence over the internal -# automake acdir (typically `${prefix}/share/aclocal-${APIVERSION}'). +# automake acdir (typically '${prefix}/share/aclocal-${APIVERSION}'). $FGREP 'am__api_version' configure # A final sanity check. diff --git a/tests/aclocal-path.test b/tests/aclocal-path.test index 8754c19ee..d1279f021 100755 --- a/tests/aclocal-path.test +++ b/tests/aclocal-path.test @@ -44,7 +44,7 @@ ACLOCAL_PATH=mdir1:./mdir2:`pwd`/mdir3 $ACLOCAL $AUTOCONF # there should be no m4_include in aclocal.m4, even though ACLOCAL_PATH -# contains `mdir1' and `./mdir2' as relative directories. Only -I +# contains 'mdir1' and './mdir2' as relative directories. Only -I # directories should be subject to file inclusion. $FGREP m4_include aclocal.m4 && Exit 1 diff --git a/tests/aclocal-print-acdir.test b/tests/aclocal-print-acdir.test index e39a9d9b3..3d8bf4e7d 100755 --- a/tests/aclocal-print-acdir.test +++ b/tests/aclocal-print-acdir.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test on aclocal's `--print-ac-dir' option. +# Test on aclocal's '--print-ac-dir' option. am_create_testdir=empty . ./defs || Exit 1 diff --git a/tests/aclocal5.test b/tests/aclocal5.test index a6a669ba4..23a7e5e55 100755 --- a/tests/aclocal5.test +++ b/tests/aclocal5.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure that aclocal.m4's dependencies are honored in -# sub-directories. See also related tests `remake-subdir*.test'. +# sub-directories. See also related tests 'remake-subdir*.test'. . ./defs || Exit 1 diff --git a/tests/aclocal7.test b/tests/aclocal7.test index 91be0e67f..548d89017 100755 --- a/tests/aclocal7.test +++ b/tests/aclocal7.test @@ -53,7 +53,7 @@ touch foo $ACLOCAL -I m4 $AUTOMAKE --no-force -# aclocal.m4 and Makefile.in should not have been updated, so `foo' +# aclocal.m4 and Makefile.in should not have been updated, so 'foo' # should be younger test `ls -1t aclocal.m4 Makefile.in sub/Makefile.in foo | sed 1q` = foo diff --git a/tests/add-missing.tap b/tests/add-missing.tap index b33600a9a..39b7ae7f6 100755 --- a/tests/add-missing.tap +++ b/tests/add-missing.tap @@ -15,9 +15,9 @@ # along with this program. If not, see . # Test that automake complains when required auxiliary files are not -# found, and that `automake --add-missing' installs the files (and only +# found, and that 'automake --add-missing' installs the files (and only # the files) it's supposed to, and that these files are symlinked by -# default, but copied if the `--copy' option is used. +# default, but copied if the '--copy' option is used. am_create_testdir=empty . ./defs || Exit 1 @@ -99,7 +99,7 @@ check_ () # shared by its "subtests"). mkdir generic cd generic - # Use `echo > ...', not `: > ...', here and below, as Solaris 10 /bin/sh + # Use 'echo > ...', not ': > ...', here and below, as Solaris 10 /bin/sh # might not execute the latter (the Autoconf manual gives more details). echo > Makefile.am if test $override = yes; then @@ -152,7 +152,7 @@ check_ () set -x # Re-enable shell traces. pwd ls -l generic - # Test once with `--copy', once without. + # Test once with '--copy', once without. for action in link copy; do case $action in link) opts='--add-missing';; @@ -170,7 +170,7 @@ check_ () command_ok_ \ "$pfx warn about missing file $f" \ grep "required file ['\`]$build_aux/$f' not found" stderr - # Suggest the user to use `--add-missing'. + # Suggest the user to use '--add-missing'. command_ok_ \ "$pfx suggest --add-missing for $f" \ grep ".*--add-missing.* install .*$f" stderr @@ -195,7 +195,7 @@ check_ () grep ": installing ['\`]$build_aux/$f'$" stderr done # Only the expected files should be installed. But automake always - # require `missing' and `install-sh', so account for them. + # require 'missing' and 'install-sh', so account for them. all_files="install-sh missing $files" for f in $all_files; do echo $f; done | sort | uniq > files.exp (cd $build_aux && ls) | sort > files.got @@ -204,7 +204,7 @@ check_ () command_ok_ \ "$pfx all and only expected files installed" \ $am_diff files.exp files.got - # The files should be copied by `--copy' and symlinked otherwise. + # The files should be copied by '--copy' and symlinked otherwise. # But these checks make no sense on systems like MSYS/MinGW where # there are no true symlinks ('ln -s' behaves like 'cp -p'), so be # ready to skip the checks in that case. See automake bug#10441. @@ -227,7 +227,7 @@ check_ () fi done # Now that the required auxiliary files have been installed, automake - # should not complain anymore even if the `--add-missing' option is + # should not complain anymore even if the '--add-missing' option is # not used. AUTOMAKE_run -d "$pfx automake finds all added files" cd .. @@ -235,8 +235,8 @@ check_ () cd "$ocwd" || fatal_ "cannot chdir back to top-level test directory" } -# Automake should always and unconditionally require the `missing' -# and `install-sh' scripts. +# Automake should always and unconditionally require the 'missing' +# and 'install-sh' scripts. check_ <<'END' == Name == minimal diff --git a/tests/amhello-binpkg.test b/tests/amhello-binpkg.test index 578fc8691..4b3e0e21b 100755 --- a/tests/amhello-binpkg.test +++ b/tests/amhello-binpkg.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test an example from the manual about the `amhello' package: +# Test an example from the manual about the 'amhello' package: # using DESTDIR to build simple, no-frills binary packages. am_create_testdir=empty diff --git a/tests/amhello-cflags.test b/tests/amhello-cflags.test index d46436298..4132bc177 100755 --- a/tests/amhello-cflags.test +++ b/tests/amhello-cflags.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test an example from the manual about the `amhello' package: +# Test an example from the manual about the 'amhello' package: # using VPATH builds to configure the same package with different # options. diff --git a/tests/amhello-cross-compile.test b/tests/amhello-cross-compile.test index 85345bdcf..b138d87c8 100755 --- a/tests/amhello-cross-compile.test +++ b/tests/amhello-cross-compile.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test an example from the manual about the `amhello' package: +# Test an example from the manual about the 'amhello' package: # cross-compiling a package from Linux/Unix to MinGW. am_create_testdir=empty diff --git a/tests/amopts-variable-expansion.test b/tests/amopts-variable-expansion.test index 981759c15..8a035d126 100755 --- a/tests/amopts-variable-expansion.test +++ b/tests/amopts-variable-expansion.test @@ -28,7 +28,7 @@ AC_CONFIG_FILES([Makefile]) END cat > Makefile.am <<'END' -# The following should expand to `-Wnone -Wno-error foreign -Wportability'. +# The following should expand to '-Wnone -Wno-error foreign -Wportability'. AUTOMAKE_OPTIONS = $(foo) foreign AUTOMAKE_OPTIONS += ${bar} foo = $(foo1) @@ -37,9 +37,9 @@ foo2 = -Wnone foo2 += $(foo3) foo3 = -Wno-error bar = -Wportability -# This will give a warning with `-Wportability'. +# This will give a warning with '-Wportability'. zardoz := -# This would give a warning with `-Woverride'. +# This would give a warning with '-Woverride'. install: END diff --git a/tests/ar-lib.test b/tests/ar-lib.test index fac0b09e5..035064588 100755 --- a/tests/ar-lib.test +++ b/tests/ar-lib.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `ar-lib' wraps the Microsoft Library Manager (lib) correctly. +# Make sure 'ar-lib' wraps the Microsoft Library Manager (lib) correctly. am_create_testdir=empty required=xsi-lib-shell diff --git a/tests/ar-lib5a.test b/tests/ar-lib5a.test index 89dc6d659..1987936b9 100755 --- a/tests/ar-lib5a.test +++ b/tests/ar-lib5a.test @@ -16,7 +16,7 @@ # Test if AM_PROG_AR triggers the use of the ar-lib script. # This test requires Microsoft lib. -# Keep this test in sync with sister test `ar-lib5b.test'. +# Keep this test in sync with sister test 'ar-lib5b.test'. required=lib . ./defs || Exit 1 @@ -60,7 +60,7 @@ $ACLOCAL $AUTOCONF $AUTOMAKE --add-missing -# Sanity check: test that it is ok to use `am_cv_ar_interface' as we do. +# Sanity check: test that it is ok to use 'am_cv_ar_interface' as we do. $FGREP 'am_cv_ar_interface=' configure ./configure AR=lib RANLIB=: diff --git a/tests/ar-lib5b.test b/tests/ar-lib5b.test index b99d195cd..2fb0cf43e 100755 --- a/tests/ar-lib5b.test +++ b/tests/ar-lib5b.test @@ -16,7 +16,7 @@ # Test if AM_PROG_AR triggers the use of the ar-lib script. # This test does not require Microsoft lib. -# Keep this test in sync with sister test `ar-lib5a.test'. +# Keep this test in sync with sister test 'ar-lib5a.test'. . ./defs || Exit 1 @@ -60,19 +60,19 @@ cat > bin/lib << 'END' #! /bin/sh echo lib command line: $* >&2 # For debugging. case " $* " in - # The `-OUT:' option is used by tests in configure. So don't create - # the `ar-lib-worked' file here, as that might cause spurious passes + # The '-OUT:' option is used by tests in configure. So don't create + # the 'ar-lib-worked' file here, as that might cause spurious passes # of this test; but don't fail either, as that would confuse said # configure tests. *' -OUT:'*) exit 0;; - # This means that $* looks like a command-line for `ar'. We have to + # This means that $* looks like a command-line for 'ar'. We have to # exit with failure here, to accommodate the two following ortoghonal # scenarios: - # 1. when `lib' is tested by configure, this will tell that it does - # not use the ar(1) interface, so that the `ar-lib' script will + # 1. when 'lib' is tested by configure, this will tell that it does + # not use the ar(1) interface, so that the 'ar-lib' script will # get involved; - # 2. when `lib' is called by the Makefile, an ar-style command line - # passed to it would mean that the `ar-lib' script has failed to + # 2. when 'lib' is called by the Makefile, an ar-style command line + # passed to it would mean that the 'ar-lib' script has failed to # properly munge the command line, or hasn't been invoked to do so. *\ c*) exit 1;; # Assume everything else is OK. @@ -86,7 +86,7 @@ $ACLOCAL $AUTOCONF $AUTOMAKE --add-missing -# Sanity check: test that it is ok to use `am_cv_ar_interface' as we do. +# Sanity check: test that it is ok to use 'am_cv_ar_interface' as we do. $FGREP 'am_cv_ar_interface=' configure ./configure AR=lib RANLIB=: diff --git a/tests/ar-lib6a.test b/tests/ar-lib6a.test index 66ae15b98..be6afcd3f 100755 --- a/tests/ar-lib6a.test +++ b/tests/ar-lib6a.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test AM_PROG_AR ordering requirements -# Keep this test in sync with sister test `ar-lib6b.test'. +# Keep this test in sync with sister test 'ar-lib6b.test'. required=libtoolize . ./defs || Exit 1 diff --git a/tests/ar-lib6b.test b/tests/ar-lib6b.test index 2be728f15..54c02225e 100755 --- a/tests/ar-lib6b.test +++ b/tests/ar-lib6b.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test AM_PROG_AR ordering requirements for older Libtools -# Keep this test in sync with sister test `ar-lib6a.test'. +# Keep this test in sync with sister test 'ar-lib6a.test'. required=libtoolize . ./defs || Exit 1 diff --git a/tests/asm.test b/tests/asm.test index f71f6220f..b9a958d1a 100755 --- a/tests/asm.test +++ b/tests/asm.test @@ -40,7 +40,7 @@ grep 'define .*CCAS.* add .*AM_PROG_AS' stderr # On fast machines the autom4te.cache created during the above run of # $AUTOMAKE is likely to have the same time stamp as the configure.ac # created below; thus causing traces for the old configure.ac to be -# used. We could do `$sleep', but it's faster to erase the +# used. We could do '$sleep', but it's faster to erase the # directory. (Erase autom4te*.cache, not autom4te.cache, because some # bogus installations of Autoconf use a versioned cache.) rm -rf autom4te*.cache diff --git a/tests/asm2.test b/tests/asm2.test index 8194f4f68..737d46d4f 100755 --- a/tests/asm2.test +++ b/tests/asm2.test @@ -40,7 +40,7 @@ grep 'define .*CCAS.* add .*AM_PROG_AS' stderr # On fast machines the autom4te.cache created during the above run of # $AUTOMAKE is likely to have the same time stamp as the configure.ac # created below; thus causing traces for the old configure.ac to be -# used. We could do `$sleep', but it's faster to erase the +# used. We could do '$sleep', but it's faster to erase the # directory. (Erase autom4te*.cache, not autom4te.cache, because some # bogus installations of Autoconf use a versioned cache.) rm -rf autom4te*.cache diff --git a/tests/asm3.test b/tests/asm3.test index 2207f9b7c..f7f835a1f 100755 --- a/tests/asm3.test +++ b/tests/asm3.test @@ -40,7 +40,7 @@ grep 'define .*CCAS.* add .*AM_PROG_AS' stderr # On fast machines the autom4te.cache created during the above run of # $AUTOMAKE is likely to have the same time stamp as the configure.ac # created below; thus causing traces for the old configure.ac to be -# used. We could do `$sleep', but it's faster to erase the +# used. We could do '$sleep', but it's faster to erase the # directory. (Erase autom4te*.cache, not autom4te.cache, because some # bogus installations of Autoconf use a versioned cache.) rm -rf autom4te*.cache diff --git a/tests/autodist-acconfig-no-subdir.test b/tests/autodist-acconfig-no-subdir.test index 26aabe009..d4ad1d960 100755 --- a/tests/autodist-acconfig-no-subdir.test +++ b/tests/autodist-acconfig-no-subdir.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that `acconfig.h' is *not* automatically distributed when +# Check that 'acconfig.h' is *not* automatically distributed when # placed in a subdirectory. # Related to automake bug#7819. diff --git a/tests/autodist-acconfig.test b/tests/autodist-acconfig.test index 3745ada74..18b280c3c 100755 --- a/tests/autodist-acconfig.test +++ b/tests/autodist-acconfig.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that `acconfig.h' is automatically distributed if it exists +# Check that 'acconfig.h' is automatically distributed if it exists # (at automake runtime). # Related to automake bug#7819. diff --git a/tests/autodist-aclocal-m4.test b/tests/autodist-aclocal-m4.test index 73d0a9ab4..6108f5743 100755 --- a/tests/autodist-aclocal-m4.test +++ b/tests/autodist-aclocal-m4.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that `aclocal.m4' is not automatically distributed if not -# required to build `configure'. This is *really* a corner-case +# Check that 'aclocal.m4' is not automatically distributed if not +# required to build 'configure'. This is *really* a corner-case # check, and the behaviour it checks is not documented either, so # if that behaviour is deliberately changed in the future, just # remove this test. diff --git a/tests/autodist-configure-no-subdir.test b/tests/autodist-configure-no-subdir.test index 7913d902d..cc53cafcc 100755 --- a/tests/autodist-configure-no-subdir.test +++ b/tests/autodist-configure-no-subdir.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that `configure', `configure.ac' and `configure.in' are *not* +# Check that 'configure', 'configure.ac' and 'configure.in' are *not* # automatically distributed when placed in a subdirectory. # Related to automake bug#7819. diff --git a/tests/autodist-no-duplicate.test b/tests/autodist-no-duplicate.test index bca2f1147..90a2c7dfc 100755 --- a/tests/autodist-no-duplicate.test +++ b/tests/autodist-no-duplicate.test @@ -22,7 +22,7 @@ re='Files .*automatically distributed.*if found' # The automake manual states that the list of automatically-distributed -# files should be given by `automake --help'. +# files should be given by 'automake --help'. list1=`$AUTOMAKE --help \ | sed -n "/^$re.*always/,/^ *$/p" \ diff --git a/tests/autodist-stamp-vti.test b/tests/autodist-stamp-vti.test index 2345ad66b..4db1f141e 100755 --- a/tests/autodist-stamp-vti.test +++ b/tests/autodist-stamp-vti.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that `stamp-vti' is automatically distributed when info_TEXINFOS +# Check that 'stamp-vti' is automatically distributed when info_TEXINFOS # and version.texi are involved. # Related to automake bug#7819. diff --git a/tests/autodist-subdir.test b/tests/autodist-subdir.test index cda2d50b2..5e1f044e9 100755 --- a/tests/autodist-subdir.test +++ b/tests/autodist-subdir.test @@ -22,7 +22,7 @@ # discussion of automake bug#7819: # # -# Keep this test in sync with sister test `autodist.test'. +# Keep this test in sync with sister test 'autodist.test'. . ./defs || Exit 1 @@ -35,7 +35,7 @@ $ACLOCAL $AUTOCONF # The automake manual states that the list of automatically-distributed -# files should be given by `automake --help'. +# files should be given by 'automake --help'. list=`$AUTOMAKE --help \ | sed -n '/^Files.*automatically distributed.*if found.*always/,/^ *$/p' \ | sed 1d` diff --git a/tests/autodist.test b/tests/autodist.test index 2c6c3227c..e6435c54c 100755 --- a/tests/autodist.test +++ b/tests/autodist.test @@ -17,7 +17,7 @@ # Check that automake really automatically distributes all the files # it advertises to do. # Related to automake bug#7819. -# Keep this test in sync with sister test `autodist-subdir.test'. +# Keep this test in sync with sister test 'autodist-subdir.test'. am_create_testdir=empty . ./defs || Exit 1 @@ -34,7 +34,7 @@ $ACLOCAL $AUTOCONF # The automake manual states that the list of automatically-distributed -# files should be given by `automake --help'. +# files should be given by 'automake --help'. list=`$AUTOMAKE --help \ | sed -n '/^Files.*automatically distributed.*if found.*always/,/^ *$/p' \ | sed 1d` diff --git a/tests/autohdrdry.test b/tests/autohdrdry.test index e7e849d17..9df36f1e4 100755 --- a/tests/autohdrdry.test +++ b/tests/autohdrdry.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Removal recovery rules for AC_CONFIG_HEADERS should not remove files -# with `make -n'. +# with 'make -n'. . ./defs || Exit 1 diff --git a/tests/auxdir-autodetect.test b/tests/auxdir-autodetect.test index 6e701ff41..790d1b152 100755 --- a/tests/auxdir-autodetect.test +++ b/tests/auxdir-autodetect.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Make sure that, if AC_CONFIG_AUX_DIR is not specified, Automake tries -# to use `.', `..' and `../..', in precisely that order. +# to use '.', '..' and '../..', in precisely that order. . ./defs || Exit 1 @@ -73,8 +73,8 @@ rm -f missing install-sh : We must end up with AC_CONFIG_AUX_DIR = .. # # -------------------------------------------- # -# Automake finds `install-sh' in `.', so it assumes that auxdir is `.'; -# but it won't find `missing' in `.', so it will fail. +# Automake finds 'install-sh' in '.', so it assumes that auxdir is '.'; +# but it won't find 'missing' in '.', so it will fail. : > install-sh AUTOMAKE_fails grep 'required file.*[^.]\./missing.*not found' stderr @@ -95,15 +95,15 @@ rm -f ../missing ../install-sh : We must end up with AC_CONFIG_AUX_DIR = ../.. # # ----------------------------------------------- # -# Automake finds `install-sh' in `.', so it assumes that auxdir is `.'; -# but it won't find `missing' in `.', so it will fail. +# Automake finds 'install-sh' in '.', so it assumes that auxdir is '.'; +# but it won't find 'missing' in '.', so it will fail. : > install-sh AUTOMAKE_fails grep 'required file.*[^.]\./missing.*not found' stderr rm -f install-sh -# Automake finds `install-sh' in `..', so it assumes that auxdir is `..'; -# but it won't find `missing' in `.', so it will fail. +# Automake finds 'install-sh' in '..', so it assumes that auxdir is '..'; +# but it won't find 'missing' in '.', so it will fail. : > ../install-sh AUTOMAKE_fails grep 'required file.*[^.]\.\./missing.*not found' stderr diff --git a/tests/auxdir7.test b/tests/auxdir7.test index 82d3e659a..9a32bcbb8 100755 --- a/tests/auxdir7.test +++ b/tests/auxdir7.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure AC_CONFIG_AUX_DIR works correctly. -# This test calls AC_CONFIG_AUX_DIR with a `.' argument, thus explicitly +# This test calls AC_CONFIG_AUX_DIR with a '.' argument, thus explicitly # making the top-level directory the config auxdir. # Keep this in sync with sister tests auxdir6.test and auxdir8.test. diff --git a/tests/auxdir8.test b/tests/auxdir8.test index cbc98949a..4dd083549 100755 --- a/tests/auxdir8.test +++ b/tests/auxdir8.test @@ -16,7 +16,7 @@ # Test to make sure AC_CONFIG_AUX_DIR works correctly. # This test tries without an explicit call to AC_CONFIG_AUX_DIR; -# the config auxdir should be implicitly defined to `.' since +# the config auxdir should be implicitly defined to '.' since # the install-sh, mkinstalldirs, etc., scripts are in the top-level # directory. # Keep this in sync with sister tests auxdir6.test and auxdir7.test. diff --git a/tests/backcompat2.test b/tests/backcompat2.test index ee38e51d7..ba9ec3b93 100755 --- a/tests/backcompat2.test +++ b/tests/backcompat2.test @@ -49,7 +49,7 @@ END # from being AC_DEFINE'd. $EGREP 'pkg(name|version)' config.h && Exit 1 # This is required because even relatively-recent versions of the - # BSD shell wrongly exit when the `errexit' shell flag is active if + # BSD shell wrongly exit when the 'errexit' shell flag is active if # the last command of a compound statement fails, even if it should # be protected by the use of "&&". : diff --git a/tests/backcompat3.test b/tests/backcompat3.test index f90b8f01e..2377e8876 100755 --- a/tests/backcompat3.test +++ b/tests/backcompat3.test @@ -23,7 +23,7 @@ am_create_testdir=empty empty='' cat > Makefile.am <<'END' -## Leading `:;' here required to work around bugs of (at least) bash 3.2 +## Leading ':;' here required to work around bugs of (at least) bash 3.2 got: Makefile @:; { \ echo 'PACKAGE = $(PACKAGE)'; \ @@ -74,8 +74,8 @@ diff exp got ### Run 2 ### cat > configure.in <<'END' -dnl: `AC_INIT' in Autoconf <= 2.63 doesn't have an URL argument. -dnl: Luckily, `AC_AUTOCONF_VERSION' and `m4_version_prereq' are +dnl: 'AC_INIT' in Autoconf <= 2.63 doesn't have an URL argument. +dnl: Luckily, 'AC_AUTOCONF_VERSION' and 'm4_version_prereq' are dnl: both present in autoconf 2.62, which we require; so that we dnl: can at least use the following workaround. m4_version_prereq([2.64], diff --git a/tests/backcompat5.test b/tests/backcompat5.test index 262a6c70c..3aa90679e 100755 --- a/tests/backcompat5.test +++ b/tests/backcompat5.test @@ -17,7 +17,7 @@ # Backward-compatibility test: try to build and distribute a package # using obsoleted forms of AC_INIT, AM_INIT_AUTOMAKE and AC_OUTPUT. # This script can also serve as mild stress-testing for Automake. -# See also the similar test `backcompat6.test'. +# See also the similar test 'backcompat6.test'. am_parallel_tests=no am_create_testdir=empty diff --git a/tests/backcompat6.test b/tests/backcompat6.test index 7d70b743c..fde118b1c 100755 --- a/tests/backcompat6.test +++ b/tests/backcompat6.test @@ -17,7 +17,7 @@ # Backward-compatibility test: try to build and distribute a package # using obsoleted forms of AC_INIT, AM_INIT_AUTOMAKE and AC_OUTPUT. # This script can also serve as mild stress-testing for Automake. -# See also the similar test `backcompat5.test'. +# See also the similar test 'backcompat5.test'. required=cc am_create_testdir=empty @@ -61,7 +61,7 @@ if ! CROSS_COMPILING ./foo ## Do not anchor the regexps w.r.t. the end of line, because on ## MinGW/MSYS, grep may assume LF line endings only, while our -## `foo' program may generate CRLF line endings. +## 'foo' program may generate CRLF line endings. ./foo | grep '^PACKAGE = nonesuch-zardoz!' ./foo | echo '^VERSION = nonesuch-0\.1!' endif diff --git a/tests/backsl2.test b/tests/backsl2.test index 92071387f..82e2f084e 100755 --- a/tests/backsl2.test +++ b/tests/backsl2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# We must skip the backslash, not complain about `./\' not existing. +# We must skip the backslash, not complain about './\' not existing. # Reported by Rick Scott . ./defs || Exit 1 diff --git a/tests/canon-name.test b/tests/canon-name.test index bc65b8924..3e8de0888 100755 --- a/tests/canon-name.test +++ b/tests/canon-name.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # PR 511: Make sure we warn about e.g. AC_CONFIG_FILES([./gmakefile]), -# as not all make implementations treat `file' and `./file' equally. +# as not all make implementations treat 'file' and './file' equally. . ./defs || Exit 1 diff --git a/tests/canon4.test b/tests/canon4.test index 8ff2404fb..6cdfd41a7 100755 --- a/tests/canon4.test +++ b/tests/canon4.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure name canonicalization happens for static libraries. -# Keep this in sync with sister test `canon6.test'. +# Keep this in sync with sister test 'canon6.test'. . ./defs || Exit 1 diff --git a/tests/canon6.test b/tests/canon6.test index 23064491f..64f946c9e 100755 --- a/tests/canon6.test +++ b/tests/canon6.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure name canonicalization happens for libtool libraries. -# Keep this in sync with sister test `canon4.test'. +# Keep this in sync with sister test 'canon4.test'. required='libtoolize' . ./defs || Exit 1 diff --git a/tests/canon8.test b/tests/canon8.test index 5ec372eb7..180e33351 100755 --- a/tests/canon8.test +++ b/tests/canon8.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that canonicalization does not transliterate the `@' charactrer. +# Check that canonicalization does not transliterate the '@' charactrer. . ./defs || Exit 1 diff --git a/tests/ccnoco.test b/tests/ccnoco.test index 910bb121a..20d516ab1 100755 --- a/tests/ccnoco.test +++ b/tests/ccnoco.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure we can compile when the compiler doesn't -# understand `-c -o'. +# understand '-c -o'. required=gcc . ./defs || Exit 1 @@ -59,7 +59,7 @@ END chmod +x Mycomp -# Make sure the compiler doesn't understand `-c -o' +# Make sure the compiler doesn't understand '-c -o' CC=`pwd`/Mycomp export CC diff --git a/tests/ccnoco3.test b/tests/ccnoco3.test index aea56cb4f..3b3e66d33 100755 --- a/tests/ccnoco3.test +++ b/tests/ccnoco3.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure `compile' doesn't call 'mv SRC SRC'. +# Test to make sure 'compile' doesn't call 'mv SRC SRC'. required=gcc . ./defs || Exit 1 @@ -65,7 +65,7 @@ $AUTOMAKE --copy --add-missing mkdir build cd build -# Make sure the compiler doesn't understand `-c -o' +# Make sure the compiler doesn't understand '-c -o' CC=`pwd`/../Mycomp export CC diff --git a/tests/check-concurrency-bug9245.test b/tests/check-concurrency-bug9245.test index a1b61acc2..064dce26f 100755 --- a/tests/check-concurrency-bug9245.test +++ b/tests/check-concurrency-bug9245.test @@ -42,7 +42,7 @@ $AUTOMAKE -a ./configure -# Some make implementations don't grok the `-j' option. +# Some make implementations don't grok the '-j' option. $MAKE -j1 || Exit 77 for j in '' -j1 -j2; do diff --git a/tests/check-exported-srcdir.test b/tests/check-exported-srcdir.test index b1e6b7025..124269bc3 100755 --- a/tests/check-exported-srcdir.test +++ b/tests/check-exported-srcdir.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check that the testsuite driver (either with or without the -# parallel-tests option enabled) exports the `srcdir' value in the +# parallel-tests option enabled) exports the 'srcdir' value in the # environment of the tests. This is documented in the manual. . ./defs || Exit 1 diff --git a/tests/check-subst-prog.test b/tests/check-subst-prog.test index 6fadc7f22..30e87632f 100755 --- a/tests/check-subst-prog.test +++ b/tests/check-subst-prog.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check @substituted@ TESTS, some of which are also PROGRAMS. -# See also sister test `check-subst.test'. +# See also sister test 'check-subst.test'. required='cc native' . ./defs || Exit 1 diff --git a/tests/check-subst.test b/tests/check-subst.test index 49702b699..79d7526a0 100755 --- a/tests/check-subst.test +++ b/tests/check-subst.test @@ -17,7 +17,7 @@ # Check @substituted@ TESTS. # Note that in this test, we rely on the .test extension for the # substituted names: this is necessary for parallel-tests. -# See also sister test `check-subst-prog.test'. +# See also sister test 'check-subst-prog.test'. . ./defs || Exit 1 diff --git a/tests/check12.test b/tests/check12.test index b611f4cd3..a21c6daff 100755 --- a/tests/check12.test +++ b/tests/check12.test @@ -135,7 +135,7 @@ for vpath in : false; do test -f hammer.sum test -f spanner.log test -f spanner.sum - # This checks will be run only by the autogenerated `check12-p.test'. + # This checks will be run only by the autogenerated 'check12-p.test'. if test x"$am_parallel_tests" = x"yes"; then test -f test-suite.log test -f a.log @@ -167,7 +167,7 @@ for vpath in : false; do grep 'FAIL:' spanner.sum && Exit 1 B_EXIT_STATUS=1 $MAKE check && Exit 1 - # This checks will be run only by the autogenerated `check12-p.test'. + # This checks will be run only by the autogenerated 'check12-p.test'. if test x"$am_parallel_tests" = x"yes"; then cat test-suite.log cat a.log @@ -183,7 +183,7 @@ for vpath in : false; do CHECKLOCAL_EXIT_STATUS=1 $MAKE check && Exit 1 grep 'check-local failed :-(' local.log - # Do not trust the exit status of `make -k'. + # Do not trust the exit status of 'make -k'. NAIL=screw B_EXIT_STATUS=23 CHECKLOCAL_EXIT_STATUS=1 $MAKE -k check || : test -f hammer.log test -f hammer.sum @@ -191,7 +191,7 @@ for vpath in : false; do test -f spanner.sum grep 'FAIL: test_hammer' hammer.sum grep 'FAIL:' spanner.sum && Exit 1 - # This checks will be run only by the autogenerated `check12-p.test'. + # This checks will be run only by the autogenerated 'check12-p.test'. if test x"$am_parallel_tests" = x"yes"; then cat test-suite.log cat a.log diff --git a/tests/check3.test b/tests/check3.test index 0c90af946..3edfd9872 100755 --- a/tests/check3.test +++ b/tests/check3.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `check:' and `install:' honor $(BUILT_SOURCES). +# Make sure 'check:' and 'install:' honor $(BUILT_SOURCES). # PR/359. . ./defs || Exit 1 diff --git a/tests/check4.test b/tests/check4.test index 4f8512a3f..26548b3db 100755 --- a/tests/check4.test +++ b/tests/check4.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `make -k check' processes all directories. +# Make sure 'make -k check' processes all directories. . ./defs || Exit 1 @@ -55,7 +55,7 @@ cat stdout grep '^FAIL: fail\.sh *$' stdout grep '^PASS: ok\.sh *$' stdout && Exit 1 -# The exit status of `make -k' can be anything +# The exit status of 'make -k' can be anything # (depending on the Make implementation) $MAKE -k check >stdout || : cat stdout diff --git a/tests/check8.test b/tests/check8.test index bf285e6a7..75a4bef63 100755 --- a/tests/check8.test +++ b/tests/check8.test @@ -74,8 +74,8 @@ grep '^[^X]*PASS.* bar' stdout grep '^[^X]*PASS.* sub/bar' stdout grep '^[^X]*FAIL.* baz' stdout grep 'XFAIL.* sub/baz' stdout -# `parallel-tests' should not add circular dependencies. -# Look for known warnings from a couple of `make' implementations. +# 'parallel-tests' should not add circular dependencies. +# Look for known warnings from a couple of 'make' implementations. grep -i 'circular.*dependency' stderr && Exit 1 grep -i 'graph cycles' stderr && Exit 1 diff --git a/tests/colon2.test b/tests/colon2.test index b1938dc3d..2b06151d2 100755 --- a/tests/colon2.test +++ b/tests/colon2.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Make sure ":" works with files automake generates. -# See also sister test `colon3.test'. +# See also sister test 'colon3.test'. . ./defs || Exit 1 @@ -57,7 +57,7 @@ test -f Makefile # Sanity check. $MAKE dummy # Again, make sure that the generated Makefile do not unduly -# refer to `zardoz' . +# refer to 'zardoz' . $MAKE -n zardoz && Exit 1 $sleep diff --git a/tests/colon3.test b/tests/colon3.test index 7b7f83e4f..5d7b3b22b 100755 --- a/tests/colon3.test +++ b/tests/colon3.test @@ -16,7 +16,7 @@ # Make sure ":" works with files automake generates. # This test is for multiple ":"s. -# See also sister test `colon2.test'. +# See also sister test 'colon2.test'. . ./defs || Exit 1 @@ -63,7 +63,7 @@ test -f Makefile # Sanity check. $MAKE dummy # Again, make sure that the generated Makefile do not unduly -# refer to `zardoz' . +# refer to 'zardoz' . $MAKE -n zardoz && Exit 1 $sleep diff --git a/tests/colon7.test b/tests/colon7.test index 822ef9dae..1b84d8046 100755 --- a/tests/colon7.test +++ b/tests/colon7.test @@ -33,7 +33,7 @@ mkdir subdir : > Makefile.am : > subdir/foo cat > subdir/Makefile.am << 'END' -# DIST_COMMON should contain `foo', not `subdir/foo'. +# DIST_COMMON should contain 'foo', not 'subdir/foo'. test: case '$(DIST_COMMON)' in *subdir/foo*) exit 1;; *) exit 0;; esac echo ' ' $(DIST_COMMON) ' ' | grep '[ /]foo ' @@ -43,7 +43,7 @@ END $ACLOCAL $AUTOMAKE -# Should nowhere refer to `bar.in'. +# Should nowhere refer to 'bar.in'. $FGREP 'bar.in' Makefile.in subdir/Makefile.in && Exit 1 $AUTOCONF diff --git a/tests/color.test b/tests/color.test index ed6a72747..6db445428 100755 --- a/tests/color.test +++ b/tests/color.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test Automake TESTS color output, by forcing it. -# Keep this in sync with the sister test `color2.test'. +# Keep this in sync with the sister test 'color2.test'. . ./defs || Exit 1 @@ -23,7 +23,7 @@ TERM=ansi export TERM esc='' -# Escape `[' for grep, below. +# Escape '[' for grep, below. red="$esc\[0;31m" grn="$esc\[0;32m" lgn="$esc\[1;32m" diff --git a/tests/color2.test b/tests/color2.test index 7df18243f..b1c8830ee 100755 --- a/tests/color2.test +++ b/tests/color2.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test Automake TESTS color output, using the expect(1) program. -# Keep this in sync with the sister test `color.test'. +# Keep this in sync with the sister test 'color.test'. . ./defs || Exit 1 @@ -23,7 +23,7 @@ TERM=ansi export TERM esc='' -# Escape `[' for grep, below. +# Escape '[' for grep, below. red="$esc\[0;31m" grn="$esc\[0;32m" lgn="$esc\[1;32m" @@ -39,7 +39,7 @@ case `echo "$std" | grep .` in *) skip_ "grep can't parse nonprinting characters";; esac -# This test requires a working a working `expect' program. +# This test requires a working a working 'expect' program. # Creative quoting required to avoid spurious maintainer-check failure. (set +e; expect -c 'exit ''77'; test $? -eq 77) \ || skip_ "requires a working expect program" @@ -50,8 +50,8 @@ esac # in proceeding. cat > Makefile <<'END' all: -## Creative quoting in the `echo' below to avoid risk of spurious output -## matches by `expect', below. +## Creative quoting in the 'echo' below to avoid risk of spurious output +## matches by 'expect', below. @test -t 1 && echo "stdout" "is" "a" "tty" END diff --git a/tests/comment.test b/tests/comment.test index 393c7b8e2..6ca98ba13 100755 --- a/tests/comment.test +++ b/tests/comment.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that `#' as start of word in AUTOMAKE_OPTIONS means +# Make sure that '#' as start of word in AUTOMAKE_OPTIONS means # comment. . ./defs || Exit 1 diff --git a/tests/comment3.test b/tests/comment3.test index b960b8202..8f80945c2 100755 --- a/tests/comment3.test +++ b/tests/comment3.test @@ -14,9 +14,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that `#' after a tab is a failure. +# Make sure that '#' after a tab is a failure. # The Tru64 Unix V5.1 system make will pass these to the -# shell, which in turn can't find `#' as a command. +# shell, which in turn can't find '#' as a command. # Sigh. Some vendors must be destroyed. . ./defs || Exit 1 diff --git a/tests/compile.test b/tests/compile.test index 0c6ceef5c..638a0d724 100755 --- a/tests/compile.test +++ b/tests/compile.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `compile' preserves spaces in its arguments. +# Make sure 'compile' preserves spaces in its arguments. am_create_testdir=empty . ./defs || Exit 1 @@ -37,7 +37,7 @@ test ! -f ./-o test ! -f a.o test -f a.c -# Make sure `compile' works for .obj too. +# Make sure 'compile' works for .obj too. ./compile touch a.obj -- -o ac.obj a.c test ! -f a.obj test ac.obj diff --git a/tests/compile2.test b/tests/compile2.test index 8dc1203f3..f808607bd 100755 --- a/tests/compile2.test +++ b/tests/compile2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `compile' deals correctly with Windows-style paths. +# Make sure 'compile' deals correctly with Windows-style paths. am_create_testdir=empty . ./defs || Exit 1 @@ -50,7 +50,7 @@ mkdir libltdl libltdl/libltdl # Backslashes in the input and the output name should be accepted. # Since this test might run on non-w32 systems, we need to be careful not -# to use any backslash sequences which might be interpreted by `echo'. +# to use any backslash sequences which might be interpreted by 'echo'. amtest_source='libltdl\libltdl\slist.c' amtest_object='libltdl\libltdl\libltdl_libltdl_la-slist.obj' amtest_obj='slist.o' @@ -68,7 +68,7 @@ if test -d 'C:\'; then fi case $PATH_SEPARATOR in ';'|':');; - *) skip_ "unrecognized PATH separator \`$PATH_SEPARATOR'" + *) skip_ "unrecognized PATH separator '$PATH_SEPARATOR'" esac amtest_source='C:\libltdl\libltdl\slist.c' diff --git a/tests/compile3.test b/tests/compile3.test index bf7f45606..6393e111e 100755 --- a/tests/compile3.test +++ b/tests/compile3.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `compile' wraps the Microsoft C/C++ compiler (cl) correctly +# Make sure 'compile' wraps the Microsoft C/C++ compiler (cl) correctly am_create_testdir=empty required=xsi-lib-shell diff --git a/tests/compile4.test b/tests/compile4.test index d7ae6505d..4fc8d9e15 100755 --- a/tests/compile4.test +++ b/tests/compile4.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `compile' wraps the Microsoft C/C++ compiler (cl) correctly +# Make sure 'compile' wraps the Microsoft C/C++ compiler (cl) correctly # with respect to absolute paths. required='cl' diff --git a/tests/compile5.test b/tests/compile5.test index fe74f5fa1..7e0fddefe 100755 --- a/tests/compile5.test +++ b/tests/compile5.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure the file name translation in the `compile' script works +# Make sure the file name translation in the 'compile' script works # correctly . ./defs || Exit 1 diff --git a/tests/compile6.test b/tests/compile6.test index 536e34b26..e20850b3c 100755 --- a/tests/compile6.test +++ b/tests/compile6.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `compile' searches libraries correctly +# Make sure 'compile' searches libraries correctly am_create_testdir=empty required=xsi-lib-shell diff --git a/tests/cond3.test b/tests/cond3.test index cf334a5d8..2bcb8c1db 100755 --- a/tests/cond3.test +++ b/tests/cond3.test @@ -54,7 +54,7 @@ END $ACLOCAL $AUTOMAKE -# `b top' so that +# 'b top' so that sed -n ' /[oO][bB][jJ][eE][cC][tT].* =/ { : loop diff --git a/tests/cond32.test b/tests/cond32.test index 9845e8c2f..7ff1a4142 100755 --- a/tests/cond32.test +++ b/tests/cond32.test @@ -37,7 +37,7 @@ bin_PROGRAMS = a if C1 a_LDADD = $(MYSUB) a_DEPENDENCIES = $(MYSUB) nonsense.a -# Note that `nonsense.a' is there just to make sure Automake insn't +# Note that 'nonsense.a' is there just to make sure Automake insn't # using some self computed a_DEPENDENCIES variable. endif diff --git a/tests/cond46.test b/tests/cond46.test index 8d6ef02a3..c89caf997 100755 --- a/tests/cond46.test +++ b/tests/cond46.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Ensure the right condition is listed after `else' and `endif'. +# Ensure the right condition is listed after 'else' and 'endif'. . ./defs || Exit 1 diff --git a/tests/confh.test b/tests/confh.test index ee574382b..475961998 100755 --- a/tests/confh.test +++ b/tests/confh.test @@ -39,7 +39,7 @@ mkdir include : > include/config.h.in : > acconfig.h -# The test used to fail if `include/Makefile.am' was created (!) +# The test used to fail if 'include/Makefile.am' was created (!) : > include/Makefile.am $ACLOCAL diff --git a/tests/confh7.test b/tests/confh7.test index 665a77496..408077978 100755 --- a/tests/confh7.test +++ b/tests/confh7.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure several config headers are allowed. -# See also sister "semantic" test `confh8.test'. +# See also sister "semantic" test 'confh8.test'. . ./defs || Exit 1 diff --git a/tests/confh8.test b/tests/confh8.test index d60dccbd1..c3a27d10f 100755 --- a/tests/confh8.test +++ b/tests/confh8.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure several config headers are allowed. -# See also sister "minimalistic" test `confh7.test'. +# See also sister "minimalistic" test 'confh7.test'. . ./defs || Exit 1 diff --git a/tests/conflnk.test b/tests/conflnk.test index 75f9f2ee5..93851ca8c 100755 --- a/tests/conflnk.test +++ b/tests/conflnk.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure links created by AC_CONFIG_LINKS get removed with -# `make distclean' +# 'make distclean' . ./defs || Exit 1 @@ -41,7 +41,7 @@ $AUTOMAKE $AUTOCONF ./configure -# Make sure nothing is deleted by `make clean' +# Make sure nothing is deleted by 'make clean' $MAKE clean test -r dest @@ -53,7 +53,7 @@ test -r sdir-no-make/dest6 test -f src test -f sdir/src2 -# Make sure the links are deleted by `make distclean' and the original files +# Make sure the links are deleted by 'make distclean' and the original files # are not. $MAKE distclean diff --git a/tests/conflnk4.test b/tests/conflnk4.test index 02f3e2a1b..a1f2f0e5a 100755 --- a/tests/conflnk4.test +++ b/tests/conflnk4.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure links to _identical files_ created by AC_CONFIG_LINKS get -# removed with `make distclean' only if doing a VPATH build. +# removed with 'make distclean' only if doing a VPATH build. . ./defs || Exit 1 @@ -55,7 +55,7 @@ cd build $MAKE test -# Make sure nothing is deleted by `make clean' +# Make sure nothing is deleted by 'make clean' $MAKE clean test -f ../src @@ -63,7 +63,7 @@ test -f ../sdir/src2 test -f ../nonmk-subdir/src3 test -f ../sdir/mk-subdir/src4 -# Make sure the links are deleted by `make distclean' and the original files +# Make sure the links are deleted by 'make distclean' and the original files # are not. $MAKE distclean @@ -82,7 +82,7 @@ cd .. $MAKE test -# Make sure nothing is deleted by `make distclean' +# Make sure nothing is deleted by 'make distclean' $MAKE distclean test -f src diff --git a/tests/copy.test b/tests/copy.test index e023231bd..a9f0f5616 100755 --- a/tests/copy.test +++ b/tests/copy.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure `-c' works. Report from Andris Pavenis. -# See also the much more in-depth test `add-missing'. +# Test to make sure '-c' works. Report from Andris Pavenis. +# See also the much more in-depth test 'add-missing'. . ./defs || Exit 1 @@ -66,7 +66,7 @@ END $ACLOCAL -# `automake -a' called without `-c' should create symlinks by default, +# 'automake -a' called without '-c' should create symlinks by default, # even when there is already a non-symlinked required auxiliary file. mkdir auxdir @@ -79,7 +79,7 @@ test -f auxdir/depcomp is_not_symlink auxdir/depcomp test FAKE-DEPCOMP = `cat auxdir/depcomp` -# `automake -a -c' should not create symlinks, even when there are +# 'automake -a -c' should not create symlinks, even when there are # already symlinked required auxiliary files. rm -rf auxdir diff --git a/tests/cscope2.test b/tests/cscope2.test index e47989b42..f72bb6a32 100755 --- a/tests/cscope2.test +++ b/tests/cscope2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# The `cscope' target should not fail if there are no sources. +# The 'cscope' target should not fail if there are no sources. required= . ./defs || Exit 1 diff --git a/tests/cscope3.test b/tests/cscope3.test index cd3082d5f..47bcd4d3a 100755 --- a/tests/cscope3.test +++ b/tests/cscope3.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# The `cscope' target should not fail if there are no sources in a subdir. -# In practice this means `cscope' should not be invoked if cscope.files +# The 'cscope' target should not fail if there are no sources in a subdir. +# In practice this means 'cscope' should not be invoked if cscope.files # is empty. required=cscope diff --git a/tests/cxx.test b/tests/cxx.test index c69aac681..63e55b87a 100755 --- a/tests/cxx.test +++ b/tests/cxx.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that `.c++' extension works. +# Test that '.c++' extension works. # From Ralf Corsepius. . ./defs || Exit 1 diff --git a/tests/cygnus-no-dist.test b/tests/cygnus-no-dist.test index eccf7fd59..519f0c2b8 100755 --- a/tests/cygnus-no-dist.test +++ b/tests/cygnus-no-dist.test @@ -50,9 +50,9 @@ END mkdir sub1 sub2 : > sub1/Makefile.am cat > sub2/Makefile.am <<'END' -# The `-Wall' after `cygnus' should ensure no warning gets +# The '-Wall' after 'cygnus' should ensure no warning gets # unintentionally disabled. We are particularly interested -# in override warnings, for when (below) we add the `distdir' +# in override warnings, for when (below) we add the 'distdir' # target. AUTOMAKE_OPTIONS = cygnus -Wall END diff --git a/tests/cygnus-no-installinfo.test b/tests/cygnus-no-installinfo.test index 9b0b19913..6f3f322ff 100755 --- a/tests/cygnus-no-installinfo.test +++ b/tests/cygnus-no-installinfo.test @@ -34,7 +34,7 @@ END $ACLOCAL # FIXME: -Wno-override works around a buglet in definition of $(MAKEINFO) -# in cygnus mode; see also xfailing test `txinfo5.test'. +# in cygnus mode; see also xfailing test 'txinfo5.test'. $AUTOMAKE --cygnus -Wno-override $AUTOCONF diff --git a/tests/dash.test b/tests/dash.test index 9edda2dce..992bf6228 100755 --- a/tests/dash.test +++ b/tests/dash.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure `-' can be used in path. +# Test to make sure '-' can be used in path. # Report from Matthew D. Langston. . ./defs || Exit 1 diff --git a/tests/defs b/tests/defs index fd0a8adbf..ea40d7e8e 100644 --- a/tests/defs +++ b/tests/defs @@ -39,7 +39,7 @@ test -f ./defs-static || { # Enable the errexit shell flag early. set -e -# The name of the current test (without the `.test' suffix). +# The name of the current test (without the '.test' suffix). # Test scripts can override it if they need to (but this should # be done carefully, and *before* including ./defs). if test -z "$me"; then @@ -94,7 +94,7 @@ case ${AM_TESTS_REEXEC-yes} in exit 99 fi AM_TESTS_REEXEC=no; export AM_TESTS_REEXEC - # Cannot simply do `opts=$-', since the content of $- is not + # Cannot simply do "opts=$-", since the content of $- is not # portable among different shells. So try to propagate only # the portable and interesting options. case $- in @@ -142,7 +142,7 @@ unset __MKLVL__ MAKE_JOBS_FIFO # For BSD make. unset DMAKE_CHILD DMAKE_DEF_PRINTED DMAKE_MAX_JOBS # For Solaris dmake. # Unset verbosity flag. unset V -# Also unset variables that will let `make -e install' divert +# Also unset variables that will let "make -e install" divert # files into unwanted directories. unset DESTDIR unset prefix exec_prefix bindir datarootdir datadir docdir dvidir @@ -150,7 +150,7 @@ unset htmldir includedir infodir libdir libexecdir localedir mandir unset oldincludedir pdfdir psdir sbindir sharedstatedir sysconfdir # Unset variables that might change the "make distcheck" behaviour. unset DISTCHECK_CONFIGURE_FLAGS AM_DISTCHECK_CONFIGURE_FLAGS -# The tests call `make -e' but we do not want $srcdir from the environment +# The tests call "make -e" but we do not want $srcdir from the environment # to override the definition from the Makefile. unset srcdir # Also unset variables that control our test driver. While not @@ -194,13 +194,13 @@ am_keeping_testdirs () esac } -# This is used in `Exit' and in the exit trap. See comments in the latter +# This is used in 'Exit' and in the exit trap. See comments in the latter # for more information, am__test_skipped=no # We use a trap below for cleanup. This requires us to go through # hoops to get the right exit status transported through the signal. -# So use `Exit STATUS' instead of `exit STATUS' inside of the tests. +# So use "Exit STATUS" instead of "exit STATUS" inside of the tests. # Turn off errexit here so that we don't trip the bug with OSF1/Tru64 # sh inside this function. Exit () @@ -321,7 +321,7 @@ AUTOMAKE_run () # AUTOMAKE_fails [-d DESCRIPTION] [OPTIONS...] # -------------------------------------------- -# Run automake with OPTIONS, and fail if doesn't exit with status `1'. +# Run automake with OPTIONS, and fail if doesn't exit with status 1. # Should be polymorphic for TAP and "plain" tests. The DESCRIPTION, # when provided, is used for console reporting, only if the TAP # protocol is in use in the current test script. @@ -332,7 +332,7 @@ AUTOMAKE_fails () # extract_configure_help { --OPTION | VARIABLE-NAME } [FILES] # ----------------------------------------------------------- -# Use this to extract from the output of `./configure --help' (or similar) +# Use this to extract from the output of "./configure --help" (or similar) # the description or help message associated to the given --OPTION or # VARIABLE-NAME. extract_configure_help () @@ -365,7 +365,7 @@ extract_configure_help () # grep_configure_help { --OPTION | VARIABLE-NAME } REGEXP # ------------------------------------------------------- -# Grep the section of `./configure --help' output associated with either +# Grep the section of "./configure --help" output associated with either # --OPTION or VARIABLE-NAME for the given *extended* regular expression. grep_configure_help () { @@ -392,7 +392,7 @@ using_gmake () '') # Use --version AND -v, because SGI Make doesn't fail on --version. # Also grep for GNU because newer versions of FreeBSD make do - # not complain about `--version' (they seem to silently ignore it). + # not complain about --version (they seem to silently ignore it). if $MAKE --version -v | grep GNU; then am__using_gmake=yes return 0 @@ -542,8 +542,8 @@ rm_rf_ () # Check that a testsuite run driven by the parallel-tests harness has # had the specified numbers of test results (specified by kind). # This function assumes that the output of "make check" or "make recheck" -# has been saved in the `stdout' file in the current directory, and its -# log in the `test-suite.log' file. +# has been saved in the 'stdout' file in the current directory, and its +# log in the 'test-suite.log' file. count_test_results () { # Use a subshell so that we won't pollute the script namespace. @@ -555,7 +555,7 @@ count_test_results () $EGREP -i '(total|x?pass|x?fail|skip|error)' stdout || : rc=0 # Avoid spurious failures with shells with "overly sensible" - # `errexit' shell flag, such as e.g., Solaris /bin/sh. + # errexit shell flag, such as e.g., Solaris /bin/sh. set +e test `grep -c '^PASS:' stdout` -eq $pass || rc=1 test `grep -c '^XFAIL:' stdout` -eq $xfail || rc=1 @@ -606,8 +606,8 @@ sed_unindent_prog="" # Avoid interferences from the environment. # get_shell_script SCRIPT-NAME # ----------------------------- -# Fetch an Automake-provided shell script from the `lib/' directory into -# the current directory, and, if the `$am_test_prefer_config_shell' +# Fetch an Automake-provided shell script from the 'lib/' directory into +# the current directory, and, if the '$am_test_prefer_config_shell' # variable is set to "yes", modify its shebang line to use $SHELL instead # of /bin/sh. get_shell_script () @@ -643,7 +643,7 @@ xsi_shell_code=' # fetch_tap_driver # ---------------- -# Fetch the Automake-provided TAP driver from the `lib/' directory into +# Fetch the Automake-provided TAP driver from the 'lib/' directory into # the current directory, and edit its shebang line so that it will be # run with the perl interpreter determined at configure time. fetch_tap_driver () @@ -757,23 +757,23 @@ do # Do not use --version, bzip2 still tries to compress stdin. echo "$me: running bzip2 --help" bzip2 --help \ - || skip_all_ "required program \`bzip2' not available" + || skip_all_ "required program 'bzip2' not available" ;; cl) CC=cl # Don't export CFLAGS, as that could have been initialized to only # work with the C compiler detected at configure time. If the user - # wants CFLAGS to also influence `cl', he can still export CFLAGS + # wants CFLAGS to also influence 'cl', he can still export CFLAGS # in the environment "by hand" before calling the testsuite. export CC CPPFLAGS echo "$me: running $CC -?" - $CC -? || skip_all_ "Microsoft C compiler \`$CC' not available" + $CC -? || skip_all_ "Microsoft C compiler '$CC' not available" ;; cscope) # Sun cscope is interactive without redirection. echo "$me: running cscope --version /dev/null 2>&1; then alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST # If Zsh is not started directly in Bourne-compatibility mode, it has - # some incompatibilities in the handling of `$0' that conflict with - # our usage: i.e., `$0' inside a file sourced with the `.' builtin is + # some incompatibilities in the handling of $0 that conflict with + # our usage: i.e., $0 inside a file sourced with the '.' builtin is # temporarily set to the name of the sourced file. # Work around this when possible, otherwise abort the script. # Note that a bug in some versions of Zsh prevents us from resetting $0 @@ -80,7 +80,7 @@ for var in \ am_original_ACLOCAL \ ; do if eval "test x\"\$$var\" != x" && env | grep "^$var=" >/dev/null; then - echo "$argv0: variable \`$var' is set in the environment:" \ + echo "$argv0: variable '$var' is set in the environment:" \ "this is unsafe" >&2 exit 99 fi @@ -123,8 +123,8 @@ case ${am_running_installcheck:=no} in am_system_acdir=$top_testsrcdir/m4/acdir ;; *) - echo "$argv0: variable \`am_running_installcheck' has invalid" - "value \`$am_running_installcheck'" >&2 + echo "$argv0: variable 'am_running_installcheck' has invalid" + "value '$am_running_installcheck'" >&2 exit 99 ;; esac @@ -154,7 +154,7 @@ AUTOUPDATE=${AM_TESTSUITE_AUTOUPDATE-${AUTOUPDATE-'@am_AUTOUPDATE@'}} # Tests who want complete control over aclocal or automake command-line # options should use $am_original_ACLOCAL or $am_original_AUTOMAKE. The -# `test -z' tests take care not to re-initialize them if defs-static +# "test -z" tests take care not to re-initialize them if defs-static # is re-sourced, as we want defs-static to remain really idempotent. if test -z "$am_original_AUTOMAKE"; then am_original_AUTOMAKE=${AM_TESTSUITE_AUTOMAKE-${AUTOMAKE-"automake-$APIVERSION"}} @@ -202,7 +202,7 @@ GNU_FCFLAGS=${AM_TESTSUITE_GNU_FCFLAGS-${GNU_FCFLAGS-'@GNU_FCFLAGS@'}} GNU_CXXFLAGS=${AM_TESTSUITE_GNU_CXXFLAGS-${GNU_CXXFLAGS-'@GNU_CXXFLAGS@'}} GNU_CFLAGS=${AM_TESTSUITE_GNU_CFLAGS-${GNU_CFLAGS-'@GNU_CFLAGS@'}} -# No all versions of Tex support `--version', so we use a configure +# No all versions of Tex support '--version', so we use a configure # check to decide if tex is available. This decision is embodied in # this variable. TEX=${AM_TESTSUITE_TEX-'@TEX@'} diff --git a/tests/dejagnu.test b/tests/dejagnu.test index a955c34a6..14b118c8a 100755 --- a/tests/dejagnu.test +++ b/tests/dejagnu.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Superficial test to check that dejagnu tests and automake-style -# tests can coexist. See also related deeper test `check12.test'. +# tests can coexist. See also related deeper test 'check12.test'. . ./defs || Exit 1 diff --git a/tests/deleted-am.test b/tests/deleted-am.test index 11fefb7c9..636286cf9 100755 --- a/tests/deleted-am.test +++ b/tests/deleted-am.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # The stub rules emitted to work around the "deleted header problem" -# for `.am' files shouldn't prevent the remake rules from correctly +# for '.am' files shouldn't prevent the remake rules from correctly # erroring out when a still-required file is missing. # See also discussion about automake bug#9768. diff --git a/tests/deleted-m4.test b/tests/deleted-m4.test index 69499b5e4..e1bbfce4a 100755 --- a/tests/deleted-m4.test +++ b/tests/deleted-m4.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # The stub rules emitted to work around the "deleted header problem" -# for `.m4' files shouldn't prevent the remake rules from correctly +# for '.m4' files shouldn't prevent the remake rules from correctly # erroring out when a still-required file is missing. # See also discussion about automake bug#9768. diff --git a/tests/depcomp.sh b/tests/depcomp.sh index 66fe8da36..a9180e937 100755 --- a/tests/depcomp.sh +++ b/tests/depcomp.sh @@ -28,7 +28,7 @@ # thus the second make will invoke depcomp with object='../../src/foo.o', # causing errors such as: # -# touch: cannot touch `../../src/.deps/foo.TPo': No such file or directory +# touch: cannot touch '../../src/.deps/foo.TPo': No such file or directory # makedepend: error: cannot open "../../src/.deps/foo.TPo" # ../../depcomp: line 560: ../../src/.deps/foo.TPo: No such file or directory @@ -53,8 +53,8 @@ # # # A partial failure of an earlier version of this test; some bad -# post-processing of the `*.Po' files led to the following broken -# contents of `src/sub/.deps/subfoo.Po': +# post-processing of the '*.Po' files led to the following broken +# contents of 'src/sub/.deps/subfoo.Po': # # > sub/subfoo.o: ../../depmod-data.dir/src/sub/subfoo.c \ # > ../../depmod-data.dir/src/foo.h diff --git a/tests/depcomp8a.test b/tests/depcomp8a.test index 7fb2602e5..01a2403c2 100755 --- a/tests/depcomp8a.test +++ b/tests/depcomp8a.test @@ -16,7 +16,7 @@ # Test for regressions in computation of names of .Po files for # automatic dependency tracking. -# Keep this in sync with sister test `depcomp8b.test', which checks the +# Keep this in sync with sister test 'depcomp8b.test', which checks the # same thing for libtool objects. required=cc diff --git a/tests/depcomp8b.test b/tests/depcomp8b.test index 49b44ca82..b5f7371cd 100755 --- a/tests/depcomp8b.test +++ b/tests/depcomp8b.test @@ -16,7 +16,7 @@ # Test for regressions in computation of names of .Plo files for # automatic dependency tracking. -# Keep this in sync with sister test `depcomp8a.test', which checks the +# Keep this in sync with sister test 'depcomp8a.test', which checks the # same thing for non-libtool objects. required='cc libtoolize' diff --git a/tests/depend.test b/tests/depend.test index 6f816ba46..a2e3bd866 100755 --- a/tests/depend.test +++ b/tests/depend.test @@ -16,7 +16,7 @@ # This tests for a bug reported by Henrik Frystyk Nielsen # In some cases the auto-dependency can get confused and try -# to `-include' a directory (if a backslash-newline appears in _SOURCES). +# to '-include' a directory (if a backslash-newline appears in _SOURCES). . ./defs || Exit 1 diff --git a/tests/destdir.test b/tests/destdir.test index 38ad08b47..22bf18406 100755 --- a/tests/destdir.test +++ b/tests/destdir.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that `make distcheck' can find some $(DESTDIR) omissions. +# Make sure that 'make distcheck' can find some $(DESTDIR) omissions. # PR/186. # The feature we test here relies on read-only directories. diff --git a/tests/dirlist.test b/tests/dirlist.test index 4cbebb458..76daa3505 100755 --- a/tests/dirlist.test +++ b/tests/dirlist.test @@ -43,15 +43,15 @@ $ACLOCAL --system-acdir acdir $AUTOCONF # There should be no m4_include in aclocal.m4, even though m4/dirlist -# contains `./dirlist-test' as a relative directory. Only -I directories +# contains './dirlist-test' as a relative directory. Only -I directories # are subject to file inclusion. grep m4_include aclocal.m4 && Exit 1 grep 'GUILE-VERSION' configure # This bug can occur only when we do a VPATH build of Automake -# (because of the `-I' passed to aclocal in tests/defs/aclocal.in) but -# it's OK because VPATH builds are done by `make distcheck'. +# (because of the '-I' passed to aclocal in tests/defs/aclocal.in) but +# it's OK because VPATH builds are done by 'make distcheck'. grep 'I should not be included' configure && Exit 1 : diff --git a/tests/dirlist2.test b/tests/dirlist2.test index 38db51447..f3b9c4ddc 100755 --- a/tests/dirlist2.test +++ b/tests/dirlist2.test @@ -50,7 +50,7 @@ $ACLOCAL --system-acdir my-acdir $AUTOCONF # There should be no m4_include in aclocal.m4, even though m4/dirlist -# contains `./dirlist-test' as a relative directory. Only -I directories +# contains './dirlist-test' as a relative directory. Only -I directories # are subject to file inclusion. grep m4_include aclocal.m4 && Exit 1 diff --git a/tests/dist-auxdir-many-subdirs.test b/tests/dist-auxdir-many-subdirs.test index c99935129..db9aa9407 100755 --- a/tests/dist-auxdir-many-subdirs.test +++ b/tests/dist-auxdir-many-subdirs.test @@ -90,7 +90,7 @@ END $AUTOCONF "$am_scriptdir"/install-sh -d $auxdir \ - || fatal_ "creating directory \`$auxdir' with install-sh" + || fatal_ "creating directory '$auxdir' with install-sh" if test $add_missing = yes; then $AUTOMAKE -a --copy for f in $required_files; do @@ -103,7 +103,7 @@ END else for f in $required_files; do cp "$am_scriptdir"/$f $auxdir/$f \ - || fatal_ "faild to fetch auxiliary script \`$f'" + || fatal_ "faild to fetch auxiliary script '$f'" # See comments above. chmod a-w $auxdir/$f done diff --git a/tests/dist-auxfile-2.test b/tests/dist-auxfile-2.test index 50dd5fe37..b7e2e2d1a 100755 --- a/tests/dist-auxfile-2.test +++ b/tests/dist-auxfile-2.test @@ -49,7 +49,7 @@ $ACLOCAL $AUTOCONF $AUTOMAKE -a test -f sub/install-sh -# Should work also without `--add-missing'. +# Should work also without '--add-missing'. $AUTOMAKE ./configure diff --git a/tests/dist-auxfile.test b/tests/dist-auxfile.test index 53a74161f..9f7e8eee7 100755 --- a/tests/dist-auxfile.test +++ b/tests/dist-auxfile.test @@ -17,7 +17,7 @@ # Files specified by AC_REQUIRE_AUX_FILE must exist, and they get # automatically distributed by the top-level Makefile.am. # Automake bug#9651 reported that this didn't happen when the build-aux -# directory was set to `.' by AC_CONFIG_AUX_DIR. +# directory was set to '.' by AC_CONFIG_AUX_DIR. am_create_testdir=empty . ./defs || Exit 1 @@ -59,7 +59,7 @@ END END mkdir subdir - echo > subdir/Makefile.am # `echo', not `:', for Solaris /bin/sh. + echo > subdir/Makefile.am # 'echo', not ':', for Solaris /bin/sh. test -z "$auxdir" || mkdir "$auxdir" || Exit 99 @@ -80,7 +80,7 @@ END touch $auxdir/foo.txt $auxdir/bar.sh $auxdir/zardoz cp "$am_scriptdir"/missing "$am_scriptdir"/install-sh $auxdir \ - || fatal_ "fetching auxiliary scripts \`missing' and \`install-sh'" + || fatal_ "fetching auxiliary scripts 'missing' and 'install-sh'" $AUTOMAKE ./configure $MAKE test diff --git a/tests/dist-formats.tap b/tests/dist-formats.tap index 821c8e0fa..8a287ff9d 100755 --- a/tests/dist-formats.tap +++ b/tests/dist-formats.tap @@ -40,9 +40,9 @@ mkdir setup \ && rm -rf setup \ || fatal_ "creating common aclocal.m4 file" -# Some make implementations (e.g., HP-UX) don't grok `-j', some require -# no space between `-j' and the number of jobs (e.g., older GNU make -# versions), and some *do* require a space between `-j' and the number +# Some make implementations (e.g., HP-UX) don't grok '-j', some require +# no space between '-j' and the number of jobs (e.g., older GNU make +# versions), and some *do* require a space between '-j' and the number # of jobs (e.g., Solaris dmake). We need a runtime test to see what # works. for MAKE_j4 in "$MAKE -j4" "$MAKE -j 4" false; do @@ -50,7 +50,7 @@ for MAKE_j4 in "$MAKE -j4" "$MAKE -j 4" false; do : For shells with buggy 'set -e'. done -# Set variables `$compressor' and `$suffix'. +# Set variables '$compressor' and '$suffix'. setup_vars_for_compression_format () { suffix=NONE compressor=NONE @@ -248,7 +248,7 @@ nogzip () append_to_opt $where_dist_nogzip no-dist-gzip setup_vars_for_compression_format "$format" # Do these before the am_opts and ac_opts variable can be munged - # by `start_subtest'. + # by 'start_subtest'. desc= test -n "$am_opts" && desc=${desc:+"$desc "}"am=$am_opts" test -n "$ac_opts" && desc=${desc:+"$desc "}"ac=$ac_opts" @@ -366,7 +366,7 @@ tarname=all-together-1.0 echo 'AM_INIT_AUTOMAKE([' > am-init.m4 echo 'AUTOMAKE_OPTIONS =' > Makefile.am -# Add half `dist-*' options to AM_INIT_AUTOMAKE, half to AUTOMAKE_OPTIONS. +# Add half 'dist-*' options to AM_INIT_AUTOMAKE, half to AUTOMAKE_OPTIONS. flip=: for fmt in $all_compression_formats; do test $fmt = gzip && continue diff --git a/tests/dist-included-parent-dir.test b/tests/dist-included-parent-dir.test index 88ca414e1..ae135aee4 100755 --- a/tests/dist-included-parent-dir.test +++ b/tests/dist-included-parent-dir.test @@ -44,6 +44,6 @@ $ACLOCAL $AUTOCONF $AUTOMAKE # Use --srcdir with an absolute path because it's harder -# to support in `distdir'. +# to support in 'distdir'. ./configure --srcdir "`pwd`" $MAKE test diff --git a/tests/dist-missing-am.test b/tests/dist-missing-am.test index aa4298999..0765b0c59 100755 --- a/tests/dist-missing-am.test +++ b/tests/dist-missing-am.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # The stub rules emitted to work around the "deleted header problem" -# for `.am' files shouldn't prevent "make" from diagnosing a missing -# required `.am' file from a distribution tarball. +# for '.am' files shouldn't prevent "make" from diagnosing a missing +# required '.am' file from a distribution tarball. # See discussion about automake bug#9768. . ./defs || Exit 1 @@ -37,7 +37,7 @@ $AUTOMAKE ./configure -# A faulty distribution tarball, with a required `.am' file missing. +# A faulty distribution tarball, with a required '.am' file missing. # Building from it should fail, both for in-tree and VPATH builds. ocwd=`pwd` || fatal_ "cannot get current working directory" for vpath in false :; do diff --git a/tests/dist-missing-included-m4.test b/tests/dist-missing-included-m4.test index 8c3c7576e..59600036c 100755 --- a/tests/dist-missing-included-m4.test +++ b/tests/dist-missing-included-m4.test @@ -15,10 +15,10 @@ # along with this program. If not, see . # The stub rules emitted to work around the "deleted header problem" -# for `.m4' files shouldn't prevent "make" from diagnosing a missing -# required `.m4' file from a distribution tarball. +# for '.m4' files shouldn't prevent "make" from diagnosing a missing +# required '.m4' file from a distribution tarball. # See discussion about automake bug#9768. -# See also sister test `dist-missing-m4.test'. +# See also sister test 'dist-missing-m4.test'. . ./defs || Exit 1 @@ -39,7 +39,7 @@ $AUTOMAKE ./configure -# A faulty distribution tarball, with a required `.m4' file missing. +# A faulty distribution tarball, with a required '.m4' file missing. # Building from it should fail, both for in-tree and VPATH builds. ocwd=`pwd` || fatal_ "cannot get current working directory" for vpath in false :; do diff --git a/tests/dist-missing-m4.test b/tests/dist-missing-m4.test index 61ed200a5..9a418d316 100755 --- a/tests/dist-missing-m4.test +++ b/tests/dist-missing-m4.test @@ -15,10 +15,10 @@ # along with this program. If not, see . # The stub rules emitted to work around the "deleted header problem" -# for `.m4' files shouldn't prevent "make" from diagnosing a missing -# required `.m4' file from a distribution tarball. +# for '.m4' files shouldn't prevent "make" from diagnosing a missing +# required '.m4' file from a distribution tarball. # See discussion about automake bug#9768. -# See also sister test `dist-missing-included-m4.test'. +# See also sister test 'dist-missing-included-m4.test'. . ./defs || Exit 1 @@ -41,7 +41,7 @@ $AUTOMAKE ./configure -# A faulty distribution tarball, with a required `.m4' file missing. +# A faulty distribution tarball, with a required '.m4' file missing. # Building from it should fail, both for in-tree and VPATH builds. ocwd=`pwd` || fatal_ "cannot get current working directory" for vpath in false :; do diff --git a/tests/distcheck-configure-flags.test b/tests/distcheck-configure-flags.test index bef9351c4..ae9fe4015 100755 --- a/tests/distcheck-configure-flags.test +++ b/tests/distcheck-configure-flags.test @@ -41,7 +41,7 @@ $AUTOCONF # make command line or in the environment. env DISTCHECK_CONFIGURE_FLAGS='--enable-success sentence=it\ works\ :-\)' \ - $MAKE distcheck # Not `make -e' here, deliberately. + $MAKE distcheck # Not 'make -e' here, deliberately. $MAKE distcheck \ DISTCHECK_CONFIGURE_FLAGS="--enable-success=yes sentence='it works :-)'" diff --git a/tests/distcheck-missing-m4.test b/tests/distcheck-missing-m4.test index 376038423..37fcc2654 100755 --- a/tests/distcheck-missing-m4.test +++ b/tests/distcheck-missing-m4.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test that we can define a distcheck-hook to diagnose m4 files -# missing from the dist tarball (interaction with `--install'). +# missing from the dist tarball (interaction with '--install'). # See automake bug#9037. . ./defs || Exit 1 @@ -23,10 +23,10 @@ cwd=`pwd` || fatal_ "cannot get current working directory" cp "$testsrcdir"/distcheck-hook-m4.am . \ - || fatal_ "cannot fetch makefile fragment \`distcheck-hook-m4.am'" + || fatal_ "cannot fetch makefile fragment 'distcheck-hook-m4.am'" cat > Makefile.am << 'END' -## The lack of `--install' here is meant. +## The lack of '--install' here is meant. ACLOCAL_AMFLAGS = -I m4 include $(srcdir)/distcheck-hook-m4.am END @@ -57,7 +57,7 @@ echo 'AC_DEFUN([MY_BLA], [:])' > pth/bla.m4 ACLOCAL="$ACLOCAL --system-acdir=$cwd/acdir"; export ACLOCAL ACLOCAL_PATH=$cwd/pth; export ACLOCAL_PATH -# We don't use `--install' here. Our distcheck-hook should catch this. +# We don't use '--install' here. Our distcheck-hook should catch this. $ACLOCAL -I m4 $AUTOCONF $EGREP 'MY_(FOO|BAR|BAZ|ZAR)' configure && Exit 1 # Sanity check. @@ -69,7 +69,7 @@ check_no_spurious_error () # On failure, some make implementations (such as Solaris make) print the # whole failed recipe on stdout. The first grep works around this. grep -v 'rm -rf ' output | grep -i 'autom4te.*\.cache' && Exit 1 - : # To placate `set -e'. + : To placate 'set -e'. } ./configure @@ -81,7 +81,7 @@ for x in bar baz zar; do done check_no_spurious_error -# Now we use `--install', and "make distcheck" should pass. +# Now we use '--install', and "make distcheck" should pass. $ACLOCAL -I m4 --install test -f m4/bar.m4 # Sanity check. test -f m4/baz.m4 # Likewise. @@ -108,7 +108,7 @@ check_no_spurious_error # Check that we don't complain for files that should have been found. $FGREP " (bar|baz|zar).m4" output && Exit 1 -# Now we again use `--install', and "make distcheck" should pass. +# Now we again use '--install', and "make distcheck" should pass. $ACLOCAL -I m4 --install test -f m4/qux.m4 # Sanity check. test -f m4/bla.m4 # Likewise. diff --git a/tests/distcheck-outdated-m4.test b/tests/distcheck-outdated-m4.test index 68e0d76a2..e80ff53ae 100755 --- a/tests/distcheck-outdated-m4.test +++ b/tests/distcheck-outdated-m4.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test that we can define a distcheck-hook to diagnose outdated m4 -# files in a dist tarball (interaction with `--install'). +# files in a dist tarball (interaction with '--install'). # See automake bug#9037. . ./defs || Exit 1 @@ -23,10 +23,10 @@ cwd=`pwd` || fatal_ "cannot get current working directory" cp "$testsrcdir"/distcheck-hook-m4.am . \ - || fatal_ "cannot fetch makefile fragment \`distcheck-hook-m4.am'" + || fatal_ "cannot fetch makefile fragment 'distcheck-hook-m4.am'" cat > Makefile.am << 'END' -## The lack of `--install' here is meant. +## The lack of '--install' here is meant. ACLOCAL_AMFLAGS = -I m4 include $(srcdir)/distcheck-hook-m4.am END @@ -48,7 +48,7 @@ END ACLOCAL="$ACLOCAL --system-acdir=$cwd/acdir"; export ACLOCAL -# The use of `--install' here won't help when the installed file `.m4' +# The use of '--install' here won't help when the installed file '.m4' # will become out-of-date w.r.t. the one in the system acdir. $ACLOCAL -I m4 --install $AUTOCONF @@ -63,7 +63,7 @@ check_no_spurious_error () # On failure, some make implementations (such as Solaris make) print the # whole failed recipe on stdout. The first grep works around this. grep -v 'rm -rf ' output | grep -i 'autom4te.*\.cache' && Exit 1 - : # To placate `set -e'. + : To placate 'set -e'. } # We start to use a new "third-party" macro in a new version @@ -87,7 +87,7 @@ check_no_spurious_error # Check that we don't complain for files that aren't outdated. $EGREP " (foo|bar).m4" output && Exit 1 -# Now we again use `--install' explicitly, and "make distcheck" +# Now we again use '--install' explicitly, and "make distcheck" # should pass. $ACLOCAL -I m4 --install using_gmake || $MAKE Makefile @@ -107,8 +107,8 @@ END ACLOCAL_PATH="$cwd/pth"; export ACLOCAL_PATH -# The explicit use of `--install' here won't help when the installed file -# `.m4' will become out-of-date w.r.t. the one in the system acdir. +# The explicit use of '--install' here won't help when the installed file +# '.m4' will become out-of-date w.r.t. the one in the system acdir. $ACLOCAL -I m4 --install using_gmake || $MAKE Makefile $MAKE distcheck @@ -128,7 +128,7 @@ check_no_spurious_error # Check that we don't complain for files that aren't outdated. $EGREP " (foo|bar|baz).m4" output && Exit 1 -# Now we again use `--install' explicitly, and "make distcheck" +# Now we again use '--install' explicitly, and "make distcheck" # should pass. $ACLOCAL -I m4 --install using_gmake || $MAKE Makefile diff --git a/tests/distcheck-pr9579.test b/tests/distcheck-pr9579.test index d2d3c69ab..8c789001e 100755 --- a/tests/distcheck-pr9579.test +++ b/tests/distcheck-pr9579.test @@ -23,7 +23,7 @@ cat >> configure.ac << 'END' AC_OUTPUT END -# NOTE: the use of `dir' as the name of the data file installed by hand +# NOTE: the use of 'dir' as the name of the data file installed by hand # is deliberate, and enhances coverage -- see definition and comments of # lib/am/distdir.am:$(am__distuninstallcheck_listfiles). diff --git a/tests/distcleancheck.test b/tests/distcleancheck.test index cc4f4956b..39197d721 100755 --- a/tests/distcleancheck.test +++ b/tests/distcleancheck.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure the suggested `distcleancheck_listfiles' in the manual works. -# The example Makefile.am we use is from the FAQ entry `distcleancheck'. +# Make sure the suggested 'distcleancheck_listfiles' in the manual works. +# The example Makefile.am we use is from the FAQ entry 'distcleancheck'. required=cc . ./defs || Exit 1 @@ -32,8 +32,8 @@ bin_PROGRAMS = foo foo_SOURCES = foo.c dist_man_MANS = foo.1 -# We write `./foo.1' inside the rule on purpose, to avoid VPATH rewriting -# done by some `make' implementations. +# We write './foo.1' inside the rule on purpose, to avoid VPATH rewriting +# done by some 'make' implementations. foo.1: foo$(EXEEXT) echo man page for foo$(EXEEXT) > ./foo.1 diff --git a/tests/distcom-subdir.test b/tests/distcom-subdir.test index dcad10d76..4da74d05c 100755 --- a/tests/distcom-subdir.test +++ b/tests/distcom-subdir.test @@ -49,8 +49,8 @@ $AUTOMAKE -a subdir/Makefile test -f depcomp # FIXME: the logic of this check and other similar ones in other -# FIXME: `distcom*.test' files should be factored out in a common -# FIXME: subroutine in `defs'... +# FIXME: 'distcom*.test' files should be factored out in a common +# FIXME: subroutine in 'defs'... sed -n -e " /^DIST_COMMON =.*\\\\$/ { :loop diff --git a/tests/distcom2.test b/tests/distcom2.test index 0f8cba0fb..4b86f928d 100755 --- a/tests/distcom2.test +++ b/tests/distcom2.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure that depcomp and compile are added to DIST_COMMON. -# Report from Pavel Roskin. Report of problems with `--no-force' from +# Report from Pavel Roskin. Report of problems with '--no-force' from # Scott James Remnant (Debian #206299) . ./defs || Exit 1 @@ -51,8 +51,8 @@ for opt in '' --no-force; do for dir in . subdir; do # FIXME: the logic of this check and other similar ones in other - # FIXME: `distcom*.test' files should be factored out in a common - # FIXME: subroutine in `defs'... + # FIXME: 'distcom*.test' files should be factored out in a common + # FIXME: subroutine in 'defs'... sed -n -e " /^DIST_COMMON =.*\\\\$/ { :loop @@ -73,7 +73,7 @@ for opt in '' --no-force; do cat subdir/dc.txt # Likewise. $FGREP ' $(top_srcdir)/depcomp ' subdir/dc.txt - # The `compile' script will be listed in the DIST_COMMON of the top-level + # The 'compile' script will be listed in the DIST_COMMON of the top-level # Makefile because it's required in configure.ac (by AM_PROG_CC_C_O). $FGREP ' $(top_srcdir)/compile ' dc.txt || $FGREP ' compile ' dc.txt diff --git a/tests/distcom3.test b/tests/distcom3.test index 4f2dd4d1e..34ad7096e 100755 --- a/tests/distcom3.test +++ b/tests/distcom3.test @@ -24,7 +24,7 @@ README: echo 'I bet you are reading me.' > README END -# Files required by `--gnu'. +# Files required by '--gnu'. : > NEWS : > AUTHORS : > ChangeLog diff --git a/tests/distdir.test b/tests/distdir.test index 6e2bba52c..0657928dc 100755 --- a/tests/distdir.test +++ b/tests/distdir.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure subdirs in EXTRA_DIST work. Also tests to make -# sure *srcdir is properly handled. Note that using `./', as in +# sure *srcdir is properly handled. Note that using './', as in # EXTRA_DIST = ./joe # does not work portably: it fails with HP-UX and Tru64 make. # Also test DISTFILES containing a directory and a file in it, @@ -63,7 +63,7 @@ mkdir build cd build ../configure $MAKE distdir -# Check to make sure `foo' isn't made in build directory. +# Check to make sure 'foo' isn't made in build directory. test -d foo && Exit 1 rm -rf $me-1.0 @@ -71,7 +71,7 @@ rm -rf $me-1.0 VERSION=10 MKDIR_P='echo MKDIR_P' $MAKE -e distdir >stdout || : cat stdout -# Make sure no `./' appear in the directory names. srcdir is `..', so +# Make sure no './' appear in the directory names. srcdir is '..', so # this also checks that no directory is created in the source tree. grep 'MKDIR_P.*\.' stdout && Exit 1 diff --git a/tests/distlinksbrk.test b/tests/distlinksbrk.test index 67408df3e..b7732ca63 100755 --- a/tests/distlinksbrk.test +++ b/tests/distlinksbrk.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that distributed broken symlinks cause `make dist' to fail, and +# Check that distributed broken symlinks cause 'make dist' to fail, and # to do so with (mostly) meaningful diagnostic. . ./defs || Exit 1 @@ -34,7 +34,7 @@ ln -s "`pwd`/nonesuch" $lnk2 ln -s $lnk1 $lnka ln -s $lnka $lnkb -# Sanity checks. Use `test -r', since Solaris Sh doesn't grok `test -e'. +# Sanity checks. Use 'test -r', since Solaris Sh doesn't grok 'test -e'. test ! -r $lnk1 test ! -r $lnk2 test ! -r $lnka diff --git a/tests/dmalloc.test b/tests/dmalloc.test index 286bcf7d2..2bf6a7c49 100755 --- a/tests/dmalloc.test +++ b/tests/dmalloc.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Simple checks on the `AM_WITH_DMALLOC' macro. +# Simple checks on the 'AM_WITH_DMALLOC' macro. . ./defs || Exit 1 @@ -32,7 +32,7 @@ END cat > Makefile.am <<'END' check-with-dmalloc: ## The AM_WITH_DMALLOC assumes that the user is a developer, so that -## he is expected to install and make available the `dmalloc' library +## he is expected to install and make available the 'dmalloc' library ## by his own. So we just check that proper linker and libs flags get ## added. echo ' ' $(LDFLAGS) ' ' | grep ' -g ' diff --git a/tests/dollar.test b/tests/dollar.test index 2747e5d8c..92ed26a94 100755 --- a/tests/dollar.test +++ b/tests/dollar.test @@ -14,12 +14,12 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# We should support files with `$' characters in their names. +# We should support files with '$' characters in their names. # Java people need this. # PR/317, reported by Eric Siegerman and Philip Fong. # Require GNU make for this test. SunOS Make does not support -# `$$' in a target or a dependency (it outputs the empty string instead). +# '$$' in a target or a dependency (it outputs the empty string instead). required=GNUmake . ./defs || Exit 1 diff --git a/tests/dollarvar.test b/tests/dollarvar.test index 3c49c3aa6..940ef23db 100755 --- a/tests/dollarvar.test +++ b/tests/dollarvar.test @@ -15,11 +15,11 @@ # along with this program. If not, see . # Test to make sure that -Wportability complains about recursive -# variable expansions and variables containing `$', `$(...)', or -# `${...}' in the name. We support recursive variable expansions using -# the latter two constructs for the `silent-rules' option, and they are +# variable expansions and variables containing '$', '$(...)', or +# '${...}' in the name. We support recursive variable expansions using +# the latter two constructs for the 'silent-rules' option, and they are # rather widely supported in practice. OTOH variable definitions -# containing a `$' on the left hand side of an assignment are not +# containing a '$' on the left hand side of an assignment are not # portable in practice, even though POSIX allows them. :-/ . ./defs || Exit 1 @@ -43,7 +43,7 @@ grep 'Makefile.am:5' stderr grep 'Makefile.am:6' stderr grep 'Makefile.am:7' stderr -# On the other hand, if we allow `silent-rules' mode, then we need to +# On the other hand, if we allow 'silent-rules' mode, then we need to # allow recursive variable expansion, too. # This should work with the AM_SILENT_RULES macro. diff --git a/tests/dollarvar2.test b/tests/dollarvar2.test index 3f66a1d72..cef85bb96 100755 --- a/tests/dollarvar2.test +++ b/tests/dollarvar2.test @@ -20,8 +20,8 @@ . ./defs || Exit 1 # -# First, try a setup where we have a `portability-recursive' warning, -# but no "simple" `portability' warning. +# First, try a setup where we have a 'portability-recursive' warning, +# but no "simple" 'portability' warning. # cat >Makefile.am <<'EOF' @@ -31,25 +31,25 @@ EOF $ACLOCAL -# Enabling `portability' warnings should enable `portability-recursive' +# Enabling 'portability' warnings should enable 'portability-recursive' # warnings. AUTOMAKE_fails -Wnone -Wportability grep 'recursive variable expansion' stderr -# `portability-recursive' warnings can be enabled by themselves. +# 'portability-recursive' warnings can be enabled by themselves. AUTOMAKE_fails -Wnone -Wportability-recursive grep 'recursive variable expansion' stderr -# Various ways to disable `portability-recursive'. +# Various ways to disable 'portability-recursive'. $AUTOMAKE -Wno-all $AUTOMAKE -Wno-portability $AUTOMAKE -Wall -Wno-portability-recursive -# `-Wno-portability-recursive' after `-Wportability' correctly disables -# `portability-recursive' warnings. +# '-Wno-portability-recursive' after '-Wportability' correctly disables +# 'portability-recursive' warnings. $AUTOMAKE -Wportability -Wno-portability-recursive -# `-Wno-portability' disables `portability-recursive' warnings; but -# a later `-Wportability-recursive' re-enables them. This time, we +# '-Wno-portability' disables 'portability-recursive' warnings; but +# a later '-Wportability-recursive' re-enables them. This time, we # use AUTOMAKE_OPTIONS to specify the warning levels. echo 'AUTOMAKE_OPTIONS = -Wno-portability' >> Makefile.am $AUTOMAKE @@ -58,8 +58,8 @@ AUTOMAKE_fails grep 'recursive variable expansion' stderr # -# Now try a setup where we have both a `portability' warning and -# a `portability-recursive' one. +# Now try a setup where we have both a 'portability' warning and +# a 'portability-recursive' one. # cat >Makefile.am <<'EOF' @@ -73,17 +73,17 @@ echo AC_PROG_CC >> configure.ac $ACLOCAL --force -# Can disable both `portability' and `portability-recursive' warnings. +# Can disable both 'portability' and 'portability-recursive' warnings. $AUTOMAKE -Wno-portability -# Disabling `portability-recursive' warnings should not disable -# `portability' warnings. +# Disabling 'portability-recursive' warnings should not disable +# 'portability' warnings. AUTOMAKE_fails -Wportability -Wno-portability-recursive grep AM_PROG_CC_C_O stderr grep 'recursive variable expansion' stderr && Exit 1 -# Enabling `portability-recursive' warnings should not enable -# all the `portability' warning. +# Enabling 'portability-recursive' warnings should not enable +# all the 'portability' warning. AUTOMAKE_fails -Wno-portability -Wportability-recursive grep AM_PROG_CC_C_O stderr && Exit 1 grep 'recursive variable expansion' stderr diff --git a/tests/exeext.test b/tests/exeext.test index 0ccc6465a..42fa57497 100755 --- a/tests/exeext.test +++ b/tests/exeext.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure `.' in an exe name doesn't fool us. +# Test to make sure '.' in an exe name doesn't fool us. # Report from Robert Collins. # Also make sure we rewrite conditionals variables. # Also check for PR/352. diff --git a/tests/ext.test b/tests/ext.test index 3fad1a183..dd92e8555 100755 --- a/tests/ext.test +++ b/tests/ext.test @@ -35,10 +35,10 @@ $AUTOMAKE for ext in f for f90 f95 F F90 F95 r m upc do - # Some versions of the BSD shell wrongly exit when `set -e' is active + # Some versions of the BSD shell wrongly exit when 'set -e' is active # if the last command within a compound statement fails and is guarded # by an && only. So we play safe and use the following idiom, instead - # of the apparently simpler `grep ... && Exit 1'. + # of the apparently simpler 'grep ... && Exit 1'. if grep "^$ext\.o:" Makefile.in; then Exit 1; else :; fi grep "^\.$ext\.o:" Makefile.in done diff --git a/tests/extra-portability.test b/tests/extra-portability.test index 4f684bbe1..3ad637592 100755 --- a/tests/extra-portability.test +++ b/tests/extra-portability.test @@ -14,11 +14,11 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check interactions between the `portability' and `extra-portability' +# Check interactions between the 'portability' and 'extra-portability' # warning categories: -# 1. `-Wextra-portability' must imply `-Wportability'. -# 2. `-Wno-portability' must imply `-Wno-extra-portability'. -# 3. `-Wall' must imply `-Wextra-portability'. +# 1. '-Wextra-portability' must imply '-Wportability'. +# 2. '-Wno-portability' must imply '-Wno-extra-portability'. +# 3. '-Wall' must imply '-Wextra-portability'. . ./defs || Exit 1 diff --git a/tests/extra-portability2.test b/tests/extra-portability2.test index db4a594f8..2d33008c5 100755 --- a/tests/extra-portability2.test +++ b/tests/extra-portability2.test @@ -37,7 +37,7 @@ $ACLOCAL # Make sure the test is useful. AUTOMAKE_fails -Wextra-portability \ - || fatal_ "setup doesn't trigger \`extra-portability' warnings" + || fatal_ "setup doesn't trigger 'extra-portability' warnings" $AUTOMAKE --foreign diff --git a/tests/extra-portability3.test b/tests/extra-portability3.test index 1c1f518df..13d608469 100755 --- a/tests/extra-portability3.test +++ b/tests/extra-portability3.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check interactions between the `portability-recursive' and -# `extra-portability' warning categories. +# Check interactions between the 'portability-recursive' and +# 'extra-portability' warning categories. . ./defs || Exit 1 diff --git a/tests/extra-programs-empty.test b/tests/extra-programs-empty.test index bc061bf6f..37e1a2bc1 100755 --- a/tests/extra-programs-empty.test +++ b/tests/extra-programs-empty.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Test that EXTRA_PROGRAMS doesn't get removed because it is empty. -# This check has been introduced in commit `Release-1-9-254-g9d0eaef' -# into the former test `subst2.test'. +# This check has been introduced in commit 'Release-1-9-254-g9d0eaef' +# into the former test 'subst2.test'. . ./defs || Exit 1 diff --git a/tests/flavor.test b/tests/flavor.test index c892350d7..f53240690 100755 --- a/tests/flavor.test +++ b/tests/flavor.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure flavors like `cygnus', `gnu', `gnits' and command line -# options like `--ignore-deps' and `--silent-rules' are preserved across +# Make sure flavors like 'cygnus', 'gnu', 'gnits' and command line +# options like '--ignore-deps' and '--silent-rules' are preserved across # automake reruns. . ./defs || Exit 1 diff --git a/tests/flibs.test b/tests/flibs.test index 706a0ac0d..4f5701bd0 100755 --- a/tests/flibs.test +++ b/tests/flibs.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `AC_F77_LIBRARY_LDFLAGS' works properly. +# Make sure 'AC_F77_LIBRARY_LDFLAGS' works properly. # Matthew D. Langston . ./defs || Exit 1 @@ -27,14 +27,14 @@ END # Tue Aug 11 09:50:48 1998 Matthew D. Langston # # This test currently fails with automake v. 1.3 since automake assumes -# that elements of `bin_PROGRAMS' (e.g. zardoz) without a corresponding -# `_SOURCES' (e.g. zardoz_SOURCES) should be compiled from `zardoz.c' -# whether or not `zardoz.c' actually exists. For example, even if the -# file `zardoz.c' doesn't exist but the file `zardoz.f' does exist, this +# that elements of 'bin_PROGRAMS' (e.g. zardoz) without a corresponding +# '_SOURCES' (e.g. zardoz_SOURCES) should be compiled from 'zardoz.c' +# whether or not 'zardoz.c' actually exists. For example, even if the +# file 'zardoz.c' doesn't exist but the file 'zardoz.f' does exist, this # tests would still fail. # -# Therefore, for now I have put in the line `zardoz_SOURCES = zardoz.f' -# (see below) so that automake's top-level `make check' won't fail, but +# Therefore, for now I have put in the line 'zardoz_SOURCES = zardoz.f' +# (see below) so that automake's top-level 'make check' won't fail, but # this line should be removed once automake handles this situation # correctly. diff --git a/tests/fn99.test b/tests/fn99.test index c4a0001a0..900b36bd3 100755 --- a/tests/fn99.test +++ b/tests/fn99.test @@ -29,7 +29,7 @@ END mkdir -p 12345678 && cd 12345678 && touch x || Exit 1 done) || skip_ "failed to create deep directory hierarchy" -# AIX 5.3 `cp -R' is too buggy for `make dist'. +# AIX 5.3 'cp -R' is too buggy for 'make dist'. cp -R 12345678 t \ || skip_ "'cp -R' failed to copy deep directory hierarchy" diff --git a/tests/fn99subdir.test b/tests/fn99subdir.test index 5fb93eaee..beb02618f 100755 --- a/tests/fn99subdir.test +++ b/tests/fn99subdir.test @@ -51,7 +51,7 @@ for i in 1 2 3 4 5 6 7 8; do mkdir -p 12345678 && cd 12345678 && touch x || Exit 1 done) || skip_ "failed to create deep directory hierarchy" -# AIX 5.3 `cp -R' is too buggy for `make dist'. +# AIX 5.3 'cp -R' is too buggy for 'make dist'. cp -R $subdirname t \ || skip_ "'cp -R' failed to copy deep directory hierarchy" diff --git a/tests/forcemiss.test b/tests/forcemiss.test index 0c108530e..d7d0800c2 100755 --- a/tests/forcemiss.test +++ b/tests/forcemiss.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure that `automake --force-missing' works. +# Test to make sure that 'automake --force-missing' works. . ./defs || Exit 1 diff --git a/tests/forcemiss2.test b/tests/forcemiss2.test index d7878bb46..3c75722df 100755 --- a/tests/forcemiss2.test +++ b/tests/forcemiss2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure that `automake --force-missing' works, even with +# Test to make sure that 'automake --force-missing' works, even with # symlinked files. . ./defs || Exit 1 diff --git a/tests/gcj2.test b/tests/gcj2.test index 92eed4543..2c4d60f33 100755 --- a/tests/gcj2.test +++ b/tests/gcj2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `..' invalid in subdir .o's. +# Make sure '..' invalid in subdir .o's. . ./defs || Exit 1 diff --git a/tests/gcj4.test b/tests/gcj4.test index 4d2db9f8f..a860f89e2 100755 --- a/tests/gcj4.test +++ b/tests/gcj4.test @@ -42,7 +42,7 @@ cat filt # ... only once. test `wc -l < filt` = 1 -# Accept any outcome but `none' +# Accept any outcome but 'none' # (at the time of writing it should be gcc or gcc3). grep -v none filt diff --git a/tests/gen-testsuite-part b/tests/gen-testsuite-part index 143cef083..42262f7f3 100755 --- a/tests/gen-testsuite-part +++ b/tests/gen-testsuite-part @@ -49,18 +49,18 @@ sub atomic_write ($$;$) my $tmpfile = "$outfile-t"; foreach my $f ($outfile, $tmpfile) { - unlink $f or die "$me: cannot unlink `$f': $!\n" + unlink $f or die "$me: cannot unlink '$f': $!\n" if -e $f; } open (my $fh, ">$tmpfile") - or die "$me: can't write to `$tmpfile': $!\n"; + or die "$me: can't write to '$tmpfile': $!\n"; $func->($fh); close $fh - or die "$me: closing `$tmpfile': $!\n"; + or die "$me: closing '$tmpfile': $!\n"; chmod ($perms & ~umask, $tmpfile) - or die "$me: cannot change perms for `$tmpfile': $!\n"; + or die "$me: cannot change perms for '$tmpfile': $!\n"; rename ($tmpfile, $outfile) - or die "$me: renaming `$tmpfile' -> `$outfile: $!\n'"; + or die "$me: renaming '$tmpfile' -> '$outfile: $!\n'"; } sub line_match ($$) @@ -69,7 +69,7 @@ sub line_match ($$) # Try both curdir and srcdir, with curdir first, to play nice # with VPATH builds. open (FH, "<$file") or open (FH, "<$srcdir/$file") - or die "$me: cannot open file `$file': $!\n"; + or die "$me: cannot open file '$file': $!\n"; my $ret = 0; while (defined (my $line = )) { @@ -79,7 +79,7 @@ sub line_match ($$) last; } } - close FH or die "$me: cannot close file `$file': $!\n"; + close FH or die "$me: cannot close file '$file': $!\n"; return $ret; } @@ -101,7 +101,7 @@ sub write_wrapper_script ($$$) . "\$dir/$wrapped_test"; exit "\$?" fi done - echo "\$0: cannot find wrapped test \\`$wrapped_test'" >&2 + echo "\$0: cannot find wrapped test '$wrapped_test'" >&2 exit '99' EOF } @@ -132,7 +132,7 @@ sub parse_options (@) local @ARGV = @_; GetOptions ('srcdir=s' => \$srcdir) or die "$me: usage error\n"; die "$me: too many arguments\n" if @ARGV > 0; - die "$me: srcdir `$srcdir': not a directory\n" unless -d $srcdir; + die "$me: srcdir '$srcdir': not a directory\n" unless -d $srcdir; } #-------------------------------------------------------------------------- @@ -189,18 +189,18 @@ my %test_generators = # # For each test script in the Automake testsuite that itself tests # features of the TESTS automake interface, define a sibling test - # that does likewise, but with the option `parallel-tests' enabled. + # that does likewise, but with the option 'parallel-tests' enabled. # # A test is considered a candidate for sibling-generation if any # Makefile.am generated by it define the TESTS variable. # # Individual tests can prevent the creation of such a sibling by - # explicitly setting the `$am_parallel_tests' variable to either "yes" + # explicitly setting the '$am_parallel_tests' variable to either "yes" # or "no". The rationale for this is that if the variable is set to - # "yes", the test already uses the `parallel-tests' option, so that + # "yes", the test already uses the 'parallel-tests' option, so that # a sibling would be just a duplicate; while if the variable is set # to "no", the test doesn't support, or is not meant to run with, the - # `parallel-tests' option, and forcing it to do so in the sibling + # 'parallel-tests' option, and forcing it to do so in the sibling # would likely cause a spurious failure. # parallel_testsuite_harness => @@ -214,17 +214,17 @@ my %test_generators = }, # # For each test script in the Automake testsuite that tests features - # of one or more automake-provided shell script from the `lib/' + # of one or more automake-provided shell script from the 'lib/' # subdirectory by running those scripts directly (i.e., not thought # make calls and automake-generated makefiles), define a sibling test # that does likewise, but running the said script with the configure # time $SHELL instead of the default system shell /bin/sh. # # A test is considered a candidate for sibling-generation if it calls - # the `get_shell_script' function anywhere. + # the 'get_shell_script' function anywhere. # # Individual tests can prevent the creation of such a sibling by - # explicitly setting the `$am_test_prefer_config_shell' variable + # explicitly setting the '$am_test_prefer_config_shell' variable # to either "yes" or "no". # The rationale for this is that if the variable is set to "yes", # the test already uses $SHELL, so that a sibling would be just a @@ -288,7 +288,7 @@ while (my ($k, $g) = each %test_generators) foreach my $wrapped_test (@wrapped_tests) { (my $base = $wrapped_test) =~ s/\.([^.]*)$//; - my $suf = $1 or die "$me: test `$wrapped_test' lacks a suffix\n"; + my $suf = $1 or die "$me: test '$wrapped_test' lacks a suffix\n"; my $wrapper_test = "$base-w.$suf"; # Register wrapper test as "autogenerated". push @generated_tests, $wrapper_test; @@ -379,7 +379,7 @@ map { print "generated_TESTS += $_\n" } @generated_tests; # The test scripts are scanned for automatic dependency generation *after* # the generated tests have been created, so they too can be scanned. To -# do so correctly, we need to update the list in `@all_tests' to make it +# do so correctly, we need to update the list in '@all_tests' to make it # comprise also the freshly-generated tests. push @all_tests, @generated_tests; @@ -398,7 +398,7 @@ while (my ($k, $x) = each %deps_extractor) my $nodist_prereqs = $x->{nodist_prereqs} || ""; my @tests = grep { line_match $x->{line_matcher}, $_ } @all_tests; map { s/\.[^.]*$//; s/$/\.log/; } (my @logs = @tests); - print "## Added by deps-extracting key `$k'.\n"; + print "## Added by deps-extracting key '$k'.\n"; ## The list of all tests which have a dependency detected by the ## current key. print join(" \\\n ", "${k}_TESTS =", @tests) . "\n"; @@ -407,5 +407,4 @@ while (my ($k, $x) = each %deps_extractor) print "\n"; } - __END__ diff --git a/tests/get-sysconf.test b/tests/get-sysconf.test index f37e1d22d..5b3c9e2cb 100755 --- a/tests/get-sysconf.test +++ b/tests/get-sysconf.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Dummy test case, aimed at reporting useful system information in the -# final `test-suite.log'. This way, if a user experiences a failure in -# the Automake test suite and then only sends us the `test-suite.log', +# final 'test-suite.log'. This way, if a user experiences a failure in +# the Automake test suite and then only sends us the 'test-suite.log', # we won't have to ask him for more information to start analyzing the # failure (that had happened too many times in the past!). @@ -47,7 +47,7 @@ cat "$testbuilddir/wrap/automake-$APIVERSION" || st=1 if test $st -eq 0; then # This test SKIPs, so that all the information it has gathered and - # printed will get unconditionally copied into the `test-suite.log' + # printed will get unconditionally copied into the 'test-suite.log' # file. Exit 77 fi diff --git a/tests/gettext-macros.test b/tests/gettext-macros.test index 460b79385..38749d36c 100755 --- a/tests/gettext-macros.test +++ b/tests/gettext-macros.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Try to find the gettext `.m4' files and make them easily accessed +# Try to find the gettext '.m4' files and make them easily accessed # to the test cases requiring them. # See also automake bug#9807. @@ -28,7 +28,7 @@ extract_program_version () echo "# Automatically generated by $me." > get.sh echo : >> get.sh -# The `gettextize' and `autopoint' scripts will look into Makefile.am. +# The 'gettextize' and 'autopoint' scripts will look into Makefile.am. echo ACLOCAL_AMFLAGS = -I m4 > Makefile.am # Prefer autopoint to gettextize, since the more modern versions of the @@ -70,7 +70,7 @@ else # macros available, e.g., by properly setting ACLOCAL_PATH. rm -rf m4 mkdir m4 - # See below for an explanation about the use the of `-Wno-syntax'. + # See below for an explanation about the use the of '-Wno-syntax'. if $ACLOCAL -Wno-syntax -I m4 --install && test -f m4/gettext.m4; then : # Gettext macros already accessible by default. else @@ -81,12 +81,12 @@ fi . ./get.sh $ACLOCAL --force -I m4 || cat >> get.sh <<'END' -# We need to use `-Wno-syntax', since we do not want our test suite -# to fail merely because some third-party `.m4' file is underquoted. +# We need to use '-Wno-syntax', since we do not want our test suite +# to fail merely because some third-party '.m4' file is underquoted. ACLOCAL="$ACLOCAL -Wno-syntax" END -# The file gettextize or autopoint might have copied in the `m4' +# The file gettextize or autopoint might have copied in the 'm4' # subdirectory of the test directory are going to be needed by # other tests, so we must not remove the test directory. keep_testdirs=yes diff --git a/tests/gettext.test b/tests/gettext.test index 12bbc7df2..a9181e48d 100755 --- a/tests/gettext.test +++ b/tests/gettext.test @@ -69,10 +69,10 @@ grep 'AM_GNU_GETTEXT.*po' stderr echo 'SUBDIRS = po intl' >Makefile.am $AUTOMAKE --add-missing -# Make sure distcheck runs `./configure --with-included-gettext'. +# Make sure distcheck runs './configure --with-included-gettext'. grep 'with-included-gettext' Makefile.in -# `SUBDIRS = po intl' isn't required if po/ doesn't exist. +# 'SUBDIRS = po intl' isn't required if po/ doesn't exist. # PR/381. rmdir po diff --git a/tests/gettext2.test b/tests/gettext2.test index 254d06eb6..8b8a06284 100755 --- a/tests/gettext2.test +++ b/tests/gettext2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check gettext `external' support. +# Check gettext 'external' support. # PR/338, reported by Charles Wilson. required='gettext' diff --git a/tests/gettext3.test b/tests/gettext3.test index 7ebd43606..9a39af2ae 100755 --- a/tests/gettext3.test +++ b/tests/gettext3.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check gettext `AM_GNU_GETTEXT_INTL_SUBDIR' support. +# Check gettext 'AM_GNU_GETTEXT_INTL_SUBDIR' support. required='gettext' . ./defs || Exit 1 diff --git a/tests/gnits3.test b/tests/gnits3.test index 931d04e20..f4797629d 100755 --- a/tests/gnits3.test +++ b/tests/gnits3.test @@ -25,8 +25,8 @@ AC_OUTPUT END # We use the same basename for all targets on purpose. This way -# we make sure that `AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = nok' -# will not match anything containing `nok'. +# we make sure that 'AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = nok' +# will not match anything containing 'nok'. cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = gnits diff --git a/tests/gnuwarn2.test b/tests/gnuwarn2.test index cda3a9a55..6a68d6580 100755 --- a/tests/gnuwarn2.test +++ b/tests/gnuwarn2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check diagnostics about no-installman being disallowed in `gnu'. +# Check diagnostics about no-installman being disallowed in 'gnu'. . ./defs || Exit 1 diff --git a/tests/help-depend.test b/tests/help-depend.test index cb57c43db..c69d564d8 100755 --- a/tests/help-depend.test +++ b/tests/help-depend.test @@ -14,9 +14,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that our private macro `AM_DEP_TRACK' adds proper text to +# Make sure that our private macro 'AM_DEP_TRACK' adds proper text to # the configure help screen. -# Keep this in sync with sister test `help-depend2.test' +# Keep this in sync with sister test 'help-depend2.test' . ./defs || Exit 1 diff --git a/tests/help-depend2.test b/tests/help-depend2.test index 76d0ae61e..58a8342a8 100755 --- a/tests/help-depend2.test +++ b/tests/help-depend2.test @@ -16,7 +16,7 @@ # Make sure that when automake automatically activates support for # dependency tracking, it adds proper text to the configure help screen. -# Keep this in sync with sister test `help-depend.test' +# Keep this in sync with sister test 'help-depend.test' . ./defs || Exit 1 diff --git a/tests/help-dmalloc.test b/tests/help-dmalloc.test index 1ed614010..a9ab69f60 100755 --- a/tests/help-dmalloc.test +++ b/tests/help-dmalloc.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that our macro `AM_WITH_DMALLOC' adds proper text to +# Make sure that our macro 'AM_WITH_DMALLOC' adds proper text to # the configure help screen. . ./defs || Exit 1 diff --git a/tests/help-init.test b/tests/help-init.test index 14925770c..d1cff1cd0 100755 --- a/tests/help-init.test +++ b/tests/help-init.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that our grand macro `AM_INIT_AUTOMAKE' add proper text +# Make sure that our grand macro 'AM_INIT_AUTOMAKE' add proper text # to the configure help screen. . ./defs || Exit 1 diff --git a/tests/help-lispdir.test b/tests/help-lispdir.test index 597f942c6..ca1ddfc30 100755 --- a/tests/help-lispdir.test +++ b/tests/help-lispdir.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that our macro `AM_PATH_LISPDIR' adds proper text to +# Make sure that our macro 'AM_PATH_LISPDIR' adds proper text to # the configure help screen. . ./defs || Exit 1 diff --git a/tests/help-multilib.test b/tests/help-multilib.test index 28dac1667..3fb455fc8 100755 --- a/tests/help-multilib.test +++ b/tests/help-multilib.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that our macro `AM_ENABLE_MULTILIB' adds proper text to +# Make sure that our macro 'AM_ENABLE_MULTILIB' adds proper text to # the configure help screen. # FIXME: the features tested by this script has been moved in contrib. # FIXME: We should move this script accordingly. diff --git a/tests/help-python.test b/tests/help-python.test index 48f15fb8f..501b545d8 100755 --- a/tests/help-python.test +++ b/tests/help-python.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that macro `AM_PATH_PYTHON' adds proper text to the +# Make sure that macro 'AM_PATH_PYTHON' adds proper text to the # configure help screen. . ./defs || Exit 1 diff --git a/tests/help-silent.test b/tests/help-silent.test index 2c78212f9..d5fc34225 100755 --- a/tests/help-silent.test +++ b/tests/help-silent.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that our macro `AM_SILENT_RULES' adds proper text to +# Make sure that our macro 'AM_SILENT_RULES' adds proper text to # the configure help screen. . ./defs || Exit 1 diff --git a/tests/help-upc.test b/tests/help-upc.test index b7b01f8e7..b81b3879a 100755 --- a/tests/help-upc.test +++ b/tests/help-upc.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that our macro `AM_PROG_UPC' adds proper text to +# Make sure that our macro 'AM_PROG_UPC' adds proper text to # the configure help screen. . ./defs || Exit 1 diff --git a/tests/help4.test b/tests/help4.test index 21555cad3..9747968b1 100755 --- a/tests/help4.test +++ b/tests/help4.test @@ -28,7 +28,7 @@ cd emptydir ACLOCAL=$am_original_ACLOCAL AUTOMAKE=$am_original_AUTOMAKE -escape_dots () { sed 's/\./\\./g'; } # Avoid issues with `\' in backquotes. +escape_dots () { sed 's/\./\\./g'; } # Avoid issues with "\" in backquotes. apiversion_rx=`echo "$APIVERSION" | escape_dots` $ACLOCAL --version --help >stdout || { cat stdout; Exit 1; } diff --git a/tests/info.test b/tests/info.test index 5c9529fb0..738ddfd1c 100755 --- a/tests/info.test +++ b/tests/info.test @@ -16,7 +16,7 @@ # Test to make sure info files are distributed correctly. # FIXME: This test is probably obsoleted, or wrong. The generated -# Makefile.in seems not to define any `INFOS' variable! +# Makefile.in seems not to define any 'INFOS' variable! . ./defs || Exit 1 diff --git a/tests/install-info-dir.test b/tests/install-info-dir.test index c05318db8..d7a0e7f91 100755 --- a/tests/install-info-dir.test +++ b/tests/install-info-dir.test @@ -14,12 +14,12 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Checks on the `install-info' target. +# Checks on the 'install-info' target. # Details about the individual checks' purposes and motivations are # inlined, below. # FIXME: this test is a good candidate for a conversion to TAP, -# FIXME: and could be merged with `txinfo27.test'. +# FIXME: and could be merged with 'txinfo27.test'. required=makeinfo . ./defs || Exit 1 @@ -42,8 +42,8 @@ cat > foo.texi << 'END' \input texinfo @setfilename foo.info @c All the following directives might be required to allow older -@c versions of the `install-info' program (e.g., version 4.8) to -@c create the `dir' index file in ${infodir}. Don't remove them. +@c versions of the 'install-info' program (e.g., version 4.8) to +@c create the 'dir' index file in ${infodir}. Don't remove them. @settitle foo @dircategory Dummy utilities @direntry @@ -72,8 +72,8 @@ else have_installinfo=no fi -# The `install-info' target updates the `${infodir}/dir' file -# by default (if the `install-info' program is available). +# The 'install-info' target updates the '${infodir}/dir' file +# by default (if the 'install-info' program is available). # This should happen in a normal as well as in a DESTDIR installation. if test $have_installinfo = yes; then $MAKE install-info @@ -86,7 +86,7 @@ fi rm -rf $instdir $destdir -# The `install-info' target doesn't fail if the `install-info' +# The 'install-info' target doesn't fail if the 'install-info' # program is not available. cat > bin/install-info <<'END' #!/bin/sh @@ -103,7 +103,7 @@ grep 'error from install-info' output && Exit 1 rm -rf $instdir output if test $have_installinfo = yes; then - # The `install-info' target doesn't try to guess whether the `install-info' + # The 'install-info' target doesn't try to guess whether the 'install-info' # is the GNU or debian version. unindent > bin/install-info <<'END' #!/bin/sh @@ -123,8 +123,8 @@ fi rm -rf $instdir bin/install-info -# The `AM_UPDATE_INFO_DIR' environment variable can be used to -# prevent the creation or update of the `${infodir}/dir' file, +# The 'AM_UPDATE_INFO_DIR' environment variable can be used to +# prevent the creation or update of the '${infodir}/dir' file, # if set to a "no" value. for val in no NO n; do rm -rf $instdir diff --git a/tests/install2.test b/tests/install2.test index 10ab856b7..f1992e8b1 100755 --- a/tests/install2.test +++ b/tests/install2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test for bug in `make dist' +# Test for bug in 'make dist' # From Pavel Roskin. . ./defs || Exit 1 @@ -42,7 +42,7 @@ test ! -r Makefile.am || skip_ "cannot drop file read permissions" ./configure -# `dist' should fail because we can't copy Makefile.am. +# 'dist' should fail because we can't copy Makefile.am. if $MAKE dist; then Exit 1 else diff --git a/tests/installdir.test b/tests/installdir.test index f632be6d1..c5a382400 100755 --- a/tests/installdir.test +++ b/tests/installdir.test @@ -16,7 +16,7 @@ # Test for PR 203. # == Report == -# Some standard targets are missing `-local' hooks. For instance, +# Some standard targets are missing '-local' hooks. For instance, # installdirs is missing this. Ideally this would be an automatic # feature of any exported target. diff --git a/tests/insthook.test b/tests/insthook.test index 14674d504..23bc4e03e 100755 --- a/tests/insthook.test +++ b/tests/insthook.test @@ -52,9 +52,9 @@ $MAKE distcheck test -f ok # Make sure that installing a second version doesn't erase the first -# one. (This is error prone since `foo' symlinks to `foo-1.0' and the -# second version will overwrite `foo'. Hopefully `install' and `install-sh' -# are smart enough to erase the `foo' symlink before installing the new +# one. (This is error prone since 'foo' symlinks to 'foo-1.0' and the +# second version will overwrite 'foo'. Hopefully 'install' and 'install-sh' +# are smart enough to erase the 'foo' symlink before installing the new # version.) ./configure "--bindir=`pwd`/bin" $MAKE install diff --git a/tests/instmany-mans.test b/tests/instmany-mans.test index 664244298..ceb3a9e0f 100755 --- a/tests/instmany-mans.test +++ b/tests/instmany-mans.test @@ -122,7 +122,7 @@ srcdir=../../$subdir # Ensure 'make install' fails when 'install' fails. # We cheat here, for efficiency, knowing the internal rule names. -# For correctness, one should `$MAKE install' here always, or at +# For correctness, one should '$MAKE install' here always, or at # least use install-exec or install-data. for file in page3.1 page$nfiles.1 npage3.1 npage$nfiles.1; do diff --git a/tests/instmany.test b/tests/instmany.test index 076119903..d334ebef1 100755 --- a/tests/instmany.test +++ b/tests/instmany.test @@ -15,9 +15,9 @@ # along with this program. If not, see . # Installing many files should not exceed the command line length limit. -# Here, the main issue is that we may prepend `$(srcdir)/' to each file, +# Here, the main issue is that we may prepend '$(srcdir)/' to each file, # which may cause much longer command lines. The list of files must -# anyway remain below the limit, otherwise `make' won't be able to even +# anyway remain below the limit, otherwise 'make' won't be able to even # fork the command. # # Further, the install rule should honor failures of the install program. @@ -136,7 +136,7 @@ srcdir=../../$subdir # Ensure 'make install' fails when 'install' fails. # We cheat here, for efficiency, knowing the internal rule names. -# For correctness, one should `$MAKE install' here always, or at +# For correctness, one should '$MAKE install' here always, or at # least use install-exec or install-data. for file in script3 script$nfiles diff --git a/tests/instsh.test b/tests/instsh.test index 38bbacce3..1fd1b3b30 100755 --- a/tests/instsh.test +++ b/tests/instsh.test @@ -32,7 +32,7 @@ cd frob $ACLOCAL $AUTOMAKE --add-missing > output 2>&1 -# Only one `/' should appear in the output. +# Only one '/' should appear in the output. cat output grep '/.*/' output && Exit 1 diff --git a/tests/instsh2.test b/tests/instsh2.test index 56b700357..054beb9eb 100755 --- a/tests/instsh2.test +++ b/tests/instsh2.test @@ -86,7 +86,7 @@ mkdir 'x y' test -f x\ \ y/a\ \ b test -f 'a b' -# Ensure we do not run into `test' operator precedence bugs with Tru64 sh. +# Ensure we do not run into 'test' operator precedence bugs with Tru64 sh. for c in = '(' ')' '!'; do ./install-sh $c 2>stderr && { cat stderr >&2; Exit 1; } cat stderr >&2 diff --git a/tests/java-compile-install.test b/tests/java-compile-install.test index eb120a3e8..f3340ffa3 100755 --- a/tests/java-compile-install.test +++ b/tests/java-compile-install.test @@ -39,7 +39,7 @@ Foo2.java: echo 'class bClass {}' > $@-t chmod a-w $@-t && mv -f $@-t $@ -# Explicitly declared as `nodist_', so generate it. +# Explicitly declared as 'nodist_', so generate it. Baz.java: rm -f $@ $@-t echo 'class Baz {}' > $@-t diff --git a/tests/java-compile-run-flat.test b/tests/java-compile-run-flat.test index 48b1feace..79083af0b 100755 --- a/tests/java-compile-run-flat.test +++ b/tests/java-compile-run-flat.test @@ -19,7 +19,7 @@ # "UNIX-style" use case. # This test uses a "flat" setup for the source tree (i.e., everything in # the top-level directory), and forces the use of the old, non-parallel -# testsuite driver. The sister test `java-compile-run-nested.test' do +# testsuite driver. The sister test 'java-compile-run-nested.test' do # similar checks with a more usual, "nested" setup, and using the newer # 'parallel-tests' driver. @@ -149,7 +149,7 @@ END ## TESTS ## cat >> Makefile.am <<'END' -## We must use `TESTS_ENVIRONMENT', not `AM_TESTS_ENVIRONMENT', +## We must use 'TESTS_ENVIRONMENT', not 'AM_TESTS_ENVIRONMENT', ## because the latter is not hnoured by the old serial test ## harness. TESTS_ENVIRONMENT = \ diff --git a/tests/java-compile-run-nested.test b/tests/java-compile-run-nested.test index 9c9523cdb..d4a780023 100755 --- a/tests/java-compile-run-nested.test +++ b/tests/java-compile-run-nested.test @@ -20,7 +20,7 @@ # This test uses a typical "nested" source tree setup (i.e., different # components/aspects are separated into different subdirectories), # and uses the 'parallel-tests' testsuite driver. The sister test -# `java-compile-run-flat.test' do similar checks with a "flat" setup +# 'java-compile-run-flat.test' do similar checks with a "flat" setup # (i.e., everything in the top-level directory), and forcing the use # of the older non-parallel 'simple-tests' driver. diff --git a/tests/java-mix.test b/tests/java-mix.test index 7f2d9293b..6ec91855f 100755 --- a/tests/java-mix.test +++ b/tests/java-mix.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Check that the JAVA primary can be used freely in the same Makefile.am -# with proper combinations of the `dist_', `nodist_' and `nobase_' -# modifiers. Also check that `.java' files are not distributed by +# with proper combinations of the 'dist_', 'nodist_' and 'nobase_' +# modifiers. Also check that '.java' files are not distributed by # default. . ./defs || Exit 1 diff --git a/tests/java-nobase.test b/tests/java-nobase.test index 168ace3ef..ff72a1338 100755 --- a/tests/java-nobase.test +++ b/tests/java-nobase.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test support of `nobase_' with the `JAVA' primary. +# Test support of 'nobase_' with the 'JAVA' primary. required=javac . ./defs || Exit 1 diff --git a/tests/java-rebuild.test b/tests/java-rebuild.test index 37ead3a1d..7672943a3 100755 --- a/tests/java-rebuild.test +++ b/tests/java-rebuild.test @@ -80,7 +80,7 @@ for vpath in : false; do # When only a java file is modified, only the *.class files derived from # it should be updated. # The strings we loop on here have the following format: - # ``JAVA-FILES-TO-BE-TOUCHED -- CLASSES-THAT-SHOULD-BE-UPDATED'' + # "JAVA-FILES-TO-BE-TOUCHED -- CLASSES-THAT-SHOULD-BE-UPDATED" for args in \ 'a -- _x' \ 'd -- x_' \ diff --git a/tests/java-sources.test b/tests/java-sources.test index a3cbb17ab..2de968391 100755 --- a/tests/java-sources.test +++ b/tests/java-sources.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test definition of automake-generated private Makefile variable -# `$(am__java_sources)'. +# '$(am__java_sources)'. . ./defs || Exit 1 diff --git a/tests/java-uninstall.test b/tests/java-uninstall.test index 97cc4abc9..7b0cdc60b 100755 --- a/tests/java-uninstall.test +++ b/tests/java-uninstall.test @@ -39,7 +39,7 @@ Foo2.java: echo 'class bClass {}' > $@-t chmod a-w $@-t && mv -f $@-t $@ -# Explicitly declared as `nodist_', so generate it. +# Explicitly declared as 'nodist_', so generate it. Baz.java: rm -f $@ $@-t echo 'class Baz {}' > $@-t diff --git a/tests/javadir-undefined.test b/tests/javadir-undefined.test index d3ca2a45b..e2ed7f659 100755 --- a/tests/javadir-undefined.test +++ b/tests/javadir-undefined.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Use of JAVA primary should not allow the use of the `java_' prefix +# Use of JAVA primary should not allow the use of the 'java_' prefix # when $(javadir) is undefined. Otherwise, we could silently end up # with a broken Makefile.in (where "make install" doesn't install # the *.class files). diff --git a/tests/javaflags.test b/tests/javaflags.test index 000ce463f..364b21fe8 100755 --- a/tests/javaflags.test +++ b/tests/javaflags.test @@ -25,7 +25,7 @@ END chmod a+x fake-javac # Remove JAVAC from the environment, so that it won't interfere -# with `make -e' below. +# with 'make -e' below. unset JAVAC || : cat >> configure.ac <<'END' diff --git a/tests/lex-clean-cxx.test b/tests/lex-clean-cxx.test index 81b416944..4fbbfccc9 100755 --- a/tests/lex-clean-cxx.test +++ b/tests/lex-clean-cxx.test @@ -18,7 +18,7 @@ # Yacc sources are cleaned by "make clean", while C++ source and # header files derived from distributed Yacc sources are cleaned by # "make maintainer-clean". -# See also sister test `lex-clean.test'. +# See also sister test 'lex-clean.test'. required=lex . ./defs || Exit 1 diff --git a/tests/lex-clean.test b/tests/lex-clean.test index 4dccc9256..62ed6bbdf 100755 --- a/tests/lex-clean.test +++ b/tests/lex-clean.test @@ -17,7 +17,7 @@ # Check that .c files derived from non-distributed .l sources # are cleaned by "make clean", while .c files derived from # distributed .l sources are cleaned by "make maintainer-clean". -# See also sister test `lex-clean-cxx.test'. +# See also sister test 'lex-clean-cxx.test'. required=yacc . ./defs || Exit 1 diff --git a/tests/lex-depend-grep.test b/tests/lex-depend-grep.test index 863df133e..0fe32ed0c 100755 --- a/tests/lex-depend-grep.test +++ b/tests/lex-depend-grep.test @@ -16,7 +16,7 @@ # Test to make sure dependencies for Lex and C/C++ does not break # in obvious ways. See PR automake/6, and related semantic tests -# `lex-depend.test' and `lex-depend-cxx.test'. +# 'lex-depend.test' and 'lex-depend-cxx.test'. . ./defs || Exit 1 diff --git a/tests/lex-lib-external.test b/tests/lex-lib-external.test index 3163e669f..399c65288 100755 --- a/tests/lex-lib-external.test +++ b/tests/lex-lib-external.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that we can get use the `yywrap' function from a system-wide +# Check that we can get use the 'yywrap' function from a system-wide # library, if that's available. required='cc lex' diff --git a/tests/lex-lib.test b/tests/lex-lib.test index f84fc343c..e1cef76e3 100755 --- a/tests/lex-lib.test +++ b/tests/lex-lib.test @@ -14,9 +14,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that we can provide a personal `yywrap' function in a custom +# Check that we can provide a personal 'yywrap' function in a custom # library. -# See also test `lex-lib-external.test'. +# See also test 'lex-lib-external.test'. required='cc lex' . ./defs || Exit 1 diff --git a/tests/lex-libobj.test b/tests/lex-libobj.test index 1ebe90cb4..a2b128dc4 100755 --- a/tests/lex-libobj.test +++ b/tests/lex-libobj.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that we can provide a personal `yywrap' function through the +# Check that we can provide a personal 'yywrap' function through the # LIBOBJ machinery. required='cc lex' diff --git a/tests/lex-line.test b/tests/lex-line.test index 008328da6..e5457cc92 100755 --- a/tests/lex-line.test +++ b/tests/lex-line.test @@ -16,8 +16,8 @@ # Check that automake lex support ensures that lex-generated C # files use correct "#line" directives. Try also with the -# `subdir-object' option enabled. -# See also sister test `yacc-line.test'. +# 'subdir-object' option enabled. +# See also sister test 'yacc-line.test'. required=lex . ./defs || Exit 1 @@ -108,7 +108,7 @@ for vpath in : false; do # Adjusted "#line" should not contain reference to the builddir. $EGREP '#.*line.*(build|\.\.).*\.l' $c_outputs && Exit 1 # Adjusted "#line" should not contain reference to the default - # output file names, e.g., `lex.yy.c'. + # output file names, e.g., 'lex.yy.c'. $EGREP '#.*line.*lex\.yy' $c_outputs && Exit 1 # Don't be excessively strict in grepping, to avoid spurious failures. grep '#.*line.*zardoz\.l' zardoz.c diff --git a/tests/lex-nodist.test b/tests/lex-nodist.test index 4dbb7191e..c1f3b0c48 100755 --- a/tests/lex-nodist.test +++ b/tests/lex-nodist.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Checks for .c files derived from non-distributed .l sources. -# The test `lex-pr204.test' does similar check with AM_MAINTAINER_MODE +# The test 'lex-pr204.test' does similar check with AM_MAINTAINER_MODE # enabled. # The tests 'yacc-nodist.test' and 'yacc-pr204.test' does similar checks # for yacc-generated .c and .h files. diff --git a/tests/lex-noyywrap.test b/tests/lex-noyywrap.test index 8be4c91c6..164095372 100755 --- a/tests/lex-noyywrap.test +++ b/tests/lex-noyywrap.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check Lex support with flex using the `%noyywrap' option. +# Check Lex support with flex using the '%noyywrap' option. required='cc flex' . ./defs || Exit 1 diff --git a/tests/lex-pr204.test b/tests/lex-pr204.test index 4c05cc6fa..1ef620532 100755 --- a/tests/lex-pr204.test +++ b/tests/lex-pr204.test @@ -16,7 +16,7 @@ # Related to PR 204. # C sources derived from nodist_ lex sources should not be distributed. -# See also related test `lex-nodist.test'. +# See also related test 'lex-nodist.test'. # The tests 'yacc-nodist.test' and 'yacc-pr204.test' does similar checks # for yacc-generated .c and .h files. diff --git a/tests/lex3.test b/tests/lex3.test index 9751deb40..23e14c9dc 100755 --- a/tests/lex3.test +++ b/tests/lex3.test @@ -69,7 +69,7 @@ if cross_compiling; then :; else : For shells with busted 'set -e'. fi -# The generated file `foo.c' must be shipped. +# The generated file 'foo.c' must be shipped. $MAKE distdir test -f $distdir/foo.c @@ -81,7 +81,7 @@ yl_distcheck test -f foo.c $MAKE distclean test -f foo.c -./configure # Re-create `Makefile'. +./configure # Re-create 'Makefile'. $MAKE maintainer-clean test ! -f foo.c diff --git a/tests/lexvpath.test b/tests/lexvpath.test index 70bff55b8..4572fe502 100755 --- a/tests/lexvpath.test +++ b/tests/lexvpath.test @@ -15,12 +15,12 @@ # along with this program. If not, see . # This test checks that dependent files are updated before including -# in the distribution. `lexer.c' depends on `lexer.l'. The latter is -# updated so that `lexer.c' should be rebuild. Then we are running -# `make' and `make distdir' and check whether the version of `lexer.c' +# in the distribution. 'lexer.c' depends on 'lexer.l'. The latter is +# updated so that 'lexer.c' should be rebuild. Then we are running +# 'make' and 'make distdir' and check whether the version of 'lexer.c' # to be distributed is up to date. -# Please keep this in sync with sister test `yaccvapth.test'. +# Please keep this in sync with sister test 'yaccvapth.test'. required='cc lex' . ./defs || Exit 1 @@ -84,7 +84,7 @@ cd sub # Ensure that lexer.l will be newer than lexer.c. $sleep -# New lexer, with `fubar' comment. +# New lexer, with 'fubar' comment. cat > ../lexer.l << 'END' %% "END" return EOF; @@ -98,13 +98,13 @@ $MAKE distdir $FGREP '/*fubar*/' $distdir/lexer.c # -# Now check to make sure that `make dist' will rebuilt the parser. +# Now check to make sure that 'make dist' will rebuilt the parser. # # Ensure that lexer.l will be newer than lexer.c. $sleep -# New lexer, with `maude' comment. +# New lexer, with 'maude' comment. cat > ../lexer.l << 'END' %% "END" return EOF; diff --git a/tests/lflags.test b/tests/lflags.test index a29e147b9..bb939a785 100755 --- a/tests/lflags.test +++ b/tests/lflags.test @@ -30,7 +30,7 @@ END chmod a+x fake-lex # Remove Lex from the environment, so that it won't interfere -# with `make -e' below. +# with 'make -e' below. unset LEX || : cat >> configure.ac <<'END' diff --git a/tests/lflags2.test b/tests/lflags2.test index a5afd21a4..57b7b6715 100755 --- a/tests/lflags2.test +++ b/tests/lflags2.test @@ -29,7 +29,7 @@ END chmod a+x fake-lex # Remove Lex from the environment, so that it won't interfere -# with `make -e' below. +# with 'make -e' below. unset LEX || : cat >> configure.ac <<'END' diff --git a/tests/libobj-basic.test b/tests/libobj-basic.test index f8394d66e..1165f1ecc 100755 --- a/tests/libobj-basic.test +++ b/tests/libobj-basic.test @@ -78,7 +78,7 @@ cat > extra-checks.am << 'END' extra_checks = maude-src maude-dist liver-not-dist END -cp "$am_scriptdir/ar-lib" . || fatal_ "fetching auxiliary script \`ar-lib'" +cp "$am_scriptdir/ar-lib" . || fatal_ "fetching auxiliary script 'ar-lib'" $ACLOCAL $AUTOCONF diff --git a/tests/libobj12.test b/tests/libobj12.test index 2a65a63f0..c3c005707 100755 --- a/tests/libobj12.test +++ b/tests/libobj12.test @@ -59,7 +59,7 @@ AUTOMAKE_fails grep 'foo\.c.*explicitly mentioned' stderr grep 'bar\.c.*explicitly mentioned' stderr -# Global `LDADD' can also come into play. +# Global 'LDADD' can also come into play. cat > Makefile.am << 'END' noinst_PROGRAMS = a b LDADD = @LIBOBJS@ diff --git a/tests/libobj15c.test b/tests/libobj15c.test index 97192134b..8fe521d9c 100755 --- a/tests/libobj15c.test +++ b/tests/libobj15c.test @@ -33,7 +33,7 @@ libtu_a_SOURCES = libtu_a_LIBADD = $(LIBOBJS) END -# Don't trip on errors due to missing `AM_PROG_AR'. +# Don't trip on errors due to missing 'AM_PROG_AR'. AUTOMAKE="$AUTOMAKE -Wno-extra-portability" $ACLOCAL diff --git a/tests/libobj16a.test b/tests/libobj16a.test index 1e78195a2..2e1da263b 100755 --- a/tests/libobj16a.test +++ b/tests/libobj16a.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Make sure AC_LIBOBJ and friends work. -# Please keep this in sync with sister test `libobj16b.test'. +# Please keep this in sync with sister test 'libobj16b.test'. required=cc . ./defs || Exit 1 diff --git a/tests/libobj16b.test b/tests/libobj16b.test index a607ce974..23432b384 100755 --- a/tests/libobj16b.test +++ b/tests/libobj16b.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Make sure AC_LIBOBJ and friends work. -# Please keep this in sync with sister test `libobj16a.test'. +# Please keep this in sync with sister test 'libobj16a.test'. required=cc . ./defs || Exit 1 diff --git a/tests/libobj20a.test b/tests/libobj20a.test index 64969784a..d56be31da 100755 --- a/tests/libobj20a.test +++ b/tests/libobj20a.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test error reporting for AC_CONFIG_LIBOBJ_DIR. -# See also sister tests `libobj20b.test' and `libobj20c.test' . +# See also sister tests 'libobj20b.test' and 'libobj20c.test' . . ./defs || Exit 1 diff --git a/tests/libobj20b.test b/tests/libobj20b.test index ec9193e10..f8ca60019 100755 --- a/tests/libobj20b.test +++ b/tests/libobj20b.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test error reporting for AC_CONFIG_LIBOBJ_DIR. -# See also sister tests `libobj20a.test' and `libobj20c.test' . +# See also sister tests 'libobj20a.test' and 'libobj20c.test' . . ./defs || Exit 1 diff --git a/tests/libobj20c.test b/tests/libobj20c.test index 2aedbd09b..7ae51bf21 100755 --- a/tests/libobj20c.test +++ b/tests/libobj20c.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test error reporting for AC_CONFIG_LIBOBJ_DIR. -# See also sister tests `libobj20a.test' and `libobj20b.test' . +# See also sister tests 'libobj20a.test' and 'libobj20b.test' . . ./defs || Exit 1 @@ -35,7 +35,7 @@ END $ACLOCAL -# Don't trip on errors due to missing `AM_PROG_AR'. +# Don't trip on errors due to missing 'AM_PROG_AR'. AUTOMAKE="$AUTOMAKE -Wno-extra-portability" AUTOMAKE_fails diff --git a/tests/libobj7.test b/tests/libobj7.test index 56fb16e6b..46f0f9841 100755 --- a/tests/libobj7.test +++ b/tests/libobj7.test @@ -23,7 +23,7 @@ cat >> configure.ac << 'END' AC_PROG_CC AM_PROG_AR AC_PROG_RANLIB -# `am__dummy_function' is there to ensure that at least one function is +# 'am__dummy_function' is there to ensure that at least one function is # replaced, to avoid creating an empty archive which can cause problems # with e.g. Solaris ar. AC_REPLACE_FUNCS([basename dirname am__dummy_function]) diff --git a/tests/libtool-macros.test b/tests/libtool-macros.test index 5d5b32865..e5c77ac1d 100755 --- a/tests/libtool-macros.test +++ b/tests/libtool-macros.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Try to find the libtool `.m4' files and make them easily accessed +# Try to find the libtool '.m4' files and make them easily accessed # to the test cases requiring them. # See also automake bug#9807. @@ -23,20 +23,20 @@ echo "# Automatically generated by $me." > get.sh echo : >> get.sh -# The `libtoolize' script will look into Makefile.am. +# The 'libtoolize' script will look into Makefile.am. echo ACLOCAL_AMFLAGS = -I m4 > Makefile.am if libtoolize --copy --install && test -f m4/libtool.m4; then echo "ACLOCAL_PATH='`pwd`/m4':\$ACLOCAL_PATH" >> get.sh echo "export ACLOCAL_PATH" >> get.sh else - # Libtoolize from libtool < 2.0 didn't support the `--install' option, + # Libtoolize from libtool < 2.0 didn't support the '--install' option, # but this doesn't mean the user hasn't made the libtool macros # available, e.g., by properly setting ACLOCAL_PATH. rm -rf m4 mkdir m4 echo AC_PROG_LIBTOOL >> configure.ac - # See below for an explanation about the use the of `-Wno-syntax'. + # See below for an explanation about the use the of '-Wno-syntax'. if $ACLOCAL -Wno-syntax -I m4 --install && test -f m4/libtool.m4; then : # Libtool macros already accessible by default. else @@ -47,12 +47,12 @@ fi . ./get.sh $ACLOCAL --force -I m4 || cat >> get.sh <<'END' -# We need to use `-Wno-syntax', since we do not want our test suite -# to fail merely because some third-party `.m4' file is underquoted. +# We need to use '-Wno-syntax', since we do not want our test suite +# to fail merely because some third-party '.m4' file is underquoted. ACLOCAL="$ACLOCAL -Wno-syntax" END -# The file libtoolize might have just copied in the `m4' subdirectory of +# The file libtoolize might have just copied in the 'm4' subdirectory of # the test directory are going to be needed by other tests, so we must # not remove the test directory. keep_testdirs=yes diff --git a/tests/libtool3.test b/tests/libtool3.test index 5ab3b0861..dbcd519d9 100755 --- a/tests/libtool3.test +++ b/tests/libtool3.test @@ -65,9 +65,9 @@ a (void) } END -# Use --copy to workaround a bug in Cygwin's `cp -p' during distcheck. +# Use --copy to workaround a bug in Cygwin's 'cp -p' during distcheck. # (This bug is already exhibited by subobj9.test.) In brief: Cygwin's -# `cp -p' tries to preserve group and owner of the source and fails +# 'cp -p' tries to preserve group and owner of the source and fails # to do so under normal accounts. With --copy we ensure we own all files. libtoolize --force --copy diff --git a/tests/license2.test b/tests/license2.test index fab140a25..d447eba2f 100755 --- a/tests/license2.test +++ b/tests/license2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that installing `COPYING' outputs a warning. +# Check that installing 'COPYING' outputs a warning. . ./defs || Exit 1 diff --git a/tests/link_c_cxx.test b/tests/link_c_cxx.test index cd1715e27..a3dac1b5b 100755 --- a/tests/link_c_cxx.test +++ b/tests/link_c_cxx.test @@ -32,7 +32,7 @@ END $ACLOCAL $AUTOMAKE -# We should only see the C++ linker in the rules of `Makefile.in'. +# We should only see the C++ linker in the rules of 'Makefile.in'. # Look for this macro not at the beginning of any line; that will have # to be good enough for now. diff --git a/tests/link_dist.test b/tests/link_dist.test index 3e49caf6f..8ba05dfd4 100755 --- a/tests/link_dist.test +++ b/tests/link_dist.test @@ -34,7 +34,7 @@ END $ACLOCAL $AUTOMAKE -# We should only see the C++ linker in the rules of `Makefile.in'. +# We should only see the C++ linker in the rules of 'Makefile.in'. # Look for this macro not at the beginning of any line; that will have # to be good enough for now. diff --git a/tests/link_f90_only.test b/tests/link_f90_only.test index ab19d1329..a34d6c6d2 100755 --- a/tests/link_f90_only.test +++ b/tests/link_f90_only.test @@ -31,7 +31,7 @@ END $ACLOCAL $AUTOMAKE -# We should only see the Fortran linker in the rules of `Makefile.in'. +# We should only see the Fortran linker in the rules of 'Makefile.in'. # Look for this macro not at the beginning of any line; that will have # to be good enough for now. diff --git a/tests/link_f_only.test b/tests/link_f_only.test index 75126e3aa..25f3ef93e 100755 --- a/tests/link_f_only.test +++ b/tests/link_f_only.test @@ -31,7 +31,7 @@ END $ACLOCAL $AUTOMAKE -# We should only see the Fortran linker in the rules of `Makefile.in'. +# We should only see the Fortran linker in the rules of 'Makefile.in'. # Look for this macro not at the beginning of any line; that will have # to be good enough for now. diff --git a/tests/link_fc.test b/tests/link_fc.test index dafff60c0..6cf8b8bd2 100755 --- a/tests/link_fc.test +++ b/tests/link_fc.test @@ -33,7 +33,7 @@ $ACLOCAL $AUTOMAKE # We should only see the Fortran 77 linker in the rules of -# `Makefile.in'. +# 'Makefile.in'. # Look for this macro not at the beginning of any line; that will have # to be good enough for now. diff --git a/tests/link_fccxx.test b/tests/link_fccxx.test index b1236d433..ede7b5a59 100755 --- a/tests/link_fccxx.test +++ b/tests/link_fccxx.test @@ -33,7 +33,7 @@ END $ACLOCAL $AUTOMAKE -# We should only see the C++ linker in the rules of `Makefile.in'. +# We should only see the C++ linker in the rules of 'Makefile.in'. # Look for this macro not at the beginning of any line; that will have # to be good enough for now. diff --git a/tests/link_fcxx.test b/tests/link_fcxx.test index 854c7d435..545f6a675 100755 --- a/tests/link_fcxx.test +++ b/tests/link_fcxx.test @@ -32,7 +32,7 @@ END $ACLOCAL $AUTOMAKE -# We should only see the C++ linker in the rules of `Makefile.in'. +# We should only see the C++ linker in the rules of 'Makefile.in'. # Look for this macro not at the beginning of any line; that will have # to be good enough for now. diff --git a/tests/lispdry.test b/tests/lispdry.test index b5c0f2606..a89ffe171 100755 --- a/tests/lispdry.test +++ b/tests/lispdry.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that `make -n' works with the lisp_LISP recover rule. +# Check that 'make -n' works with the lisp_LISP recover rule. required='emacs non-root' . ./defs || Exit 1 diff --git a/tests/longlin2.test b/tests/longlin2.test index b156b5591..1ba8072f3 100755 --- a/tests/longlin2.test +++ b/tests/longlin2.test @@ -35,7 +35,7 @@ FOO = $files $files2 \ grepme EOF -# The `FOO = ...' line is 2293-byte long. More than what a POSIX +# The 'FOO = ...' line is 2293-byte long. More than what a POSIX # conformant system is expected to support. So do not use grep # on the non-text file. diff --git a/tests/m4-inclusion.test b/tests/m4-inclusion.test index 7285e2886..52dae22a0 100755 --- a/tests/m4-inclusion.test +++ b/tests/m4-inclusion.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to see if `m4_sinclude' and `m4_include' works. +# Test to see if 'm4_sinclude' and 'm4_include' works. . ./defs || Exit 1 diff --git a/tests/maintclean-vpath.test b/tests/maintclean-vpath.test index f5f50ed82..11e97a69f 100755 --- a/tests/maintclean-vpath.test +++ b/tests/maintclean-vpath.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Make sure distclean and maintainer-clean erase the right files. -# This test is for VPATH builds; see sister test `maintclean.test' +# This test is for VPATH builds; see sister test 'maintclean.test' # for in-tree builds. . ./defs || Exit 1 diff --git a/tests/maintclean.test b/tests/maintclean.test index 8bdc7d2c8..c5d3d0ef7 100755 --- a/tests/maintclean.test +++ b/tests/maintclean.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Make sure distclean and maintainer-clean erase the right files. -# This test is for in-tree builds; see sister test `maintclean-vpath.test' +# This test is for in-tree builds; see sister test 'maintclean-vpath.test' # for VPATH builds. . ./defs || Exit 1 diff --git a/tests/maintmode-configure-msg.test b/tests/maintmode-configure-msg.test index ac13afff4..8a7c45104 100755 --- a/tests/maintmode-configure-msg.test +++ b/tests/maintmode-configure-msg.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure that our macro `AM_MAINTAINER_MODE' adds proper text to +# Make sure that our macro 'AM_MAINTAINER_MODE' adds proper text to # the configure help screen. Also make sure the "checking ..." messages # related to the enabling/disabling of maintainer mode are correct (see # automake bug#9890). diff --git a/tests/make.test b/tests/make.test index a6e568930..e292e38c7 100755 --- a/tests/make.test +++ b/tests/make.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure `make' check works. +# Test to make sure 'make' check works. # From Ralf Corsepius. required=GNUmake diff --git a/tests/makej.test b/tests/makej.test index 9144d83e2..64c5f28a9 100755 --- a/tests/makej.test +++ b/tests/makej.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# `make -j' used to fail with Autoconf < 2.58, because tools like +# 'make -j' used to fail with Autoconf < 2.58, because tools like # autoconf and automake can try to update autom4te's cache in parallel. # # Note that failures might not be reproducible systematically as they diff --git a/tests/makej2.test b/tests/makej2.test index 746a2bd13..8183887a4 100755 --- a/tests/makej2.test +++ b/tests/makej2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure known BSD `make -jN' issues are fixed: +# Test to make sure known BSD 'make -jN' issues are fixed: # without -B, it may reuse the same shell for separate commands in a # rule, which can lead to interesting results. diff --git a/tests/maken.test b/tests/maken.test index d8077df91..bb6444461 100755 --- a/tests/maken.test +++ b/tests/maken.test @@ -14,9 +14,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Ensure that `make -n dist' and `make -n distcheck' do not change files -# on disk, due to GNU make executing rules containing `$(MAKE)'. -# Also, ensure that `make -n dist' and `make -n distcheck' show what +# Ensure that 'make -n dist' and 'make -n distcheck' do not change files +# on disk, due to GNU make executing rules containing '$(MAKE)'. +# Also, ensure that 'make -n dist' and 'make -n distcheck' show what # would happen, at least when using GNU make. . ./defs || Exit 1 diff --git a/tests/maken3.test b/tests/maken3.test index 837b15b9b..2018549e5 100755 --- a/tests/maken3.test +++ b/tests/maken3.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test `make -n' for various targets, to ensure that: +# Test 'make -n' for various targets, to ensure that: # # 1. no files or directories are created or removed, and # diff --git a/tests/man.test b/tests/man.test index 6bbd46f71..d2e5dd66a 100755 --- a/tests/man.test +++ b/tests/man.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure `dist' prefix works with man pages. +# Test to make sure 'dist' prefix works with man pages. . ./defs || Exit 1 diff --git a/tests/man4.test b/tests/man4.test index 895e0c5ce..c7333b9c2 100755 --- a/tests/man4.test +++ b/tests/man4.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Ensure `make dist' fails when help2man replacement man pages are created. +# Ensure 'make dist' fails when help2man replacement man pages are created. # # The assumption here is the following: if the developer uses help2man to # generate man pages from --help output, then these man pages may not be @@ -63,7 +63,7 @@ chmod +x foo bar mkdir bin cat > bin/help2man <<'END' #! /bin/sh -# Fake help2man script that lets `missing' think it is not installed. +# Fake help2man script that lets 'missing' think it is not installed. exit 127 END chmod +x bin/help2man diff --git a/tests/man6.test b/tests/man6.test index d6cece60c..1a7b26751 100755 --- a/tests/man6.test +++ b/tests/man6.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Ensure `make distcheck' passes when help2man generates man pages, -# even if the `missing' script is involved. +# Ensure 'make distcheck' passes when help2man generates man pages, +# even if the 'missing' script is involved. required=help2man . ./defs || Exit 1 diff --git a/tests/missing5.test b/tests/missing5.test index e17b26747..80bba3691 100755 --- a/tests/missing5.test +++ b/tests/missing5.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test how well `missing' finds output file names of various tools. +# Test how well 'missing' finds output file names of various tools. # PR automake/483. am_create_testdir=empty @@ -22,7 +22,7 @@ am_create_testdir=empty get_shell_script missing -# These programs may be invoked by `missing'. +# These programs may be invoked by 'missing'. needed_tools='chmod find sed test touch' needed_tools_csep=`echo $needed_tools | sed 's/ /, /g'` diff --git a/tests/no-outdir-option.test b/tests/no-outdir-option.test index c227af710..621253479 100755 --- a/tests/no-outdir-option.test +++ b/tests/no-outdir-option.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that the `-o' aka `--output-dir' option is not recognized anymore. +# Check that the '-o' aka '--output-dir' option is not recognized anymore. . ./defs || Exit 1 diff --git a/tests/nobase-nodist.test b/tests/nobase-nodist.test index d4ae44acc..54b940b9b 100755 --- a/tests/nobase-nodist.test +++ b/tests/nobase-nodist.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Interaction of `nobase_' and `nodist_' prefixes. +# Interaction of 'nobase_' and 'nodist_' prefixes. . ./defs || Exit 1 @@ -32,7 +32,7 @@ END cat > Makefile.am << 'END' nobase_nodist_noinst_PYTHON = baz1.py sub/baz2.py # Lisp and Java sources are not distributed by default, so try both -# with and without the `nodist_' prefix, for more coverage. +# with and without the 'nodist_' prefix, for more coverage. nobase_noinst_LISP = foo1.el sub/foo2.el nobase_nodist_noinst_LISP = foo3.el sub/foo4.el nobase_noinst_JAVA = bar1.java sub/bar2.java diff --git a/tests/nodef2.test b/tests/nodef2.test index 965a915ef..1af7b0d36 100755 --- a/tests/nodef2.test +++ b/tests/nodef2.test @@ -46,7 +46,7 @@ END $ACLOCAL $AUTOCONF -$AUTOMAKE # Dummy call to make sure Automake grok `no-define' silently. +$AUTOMAKE # Dummy call to make sure Automake grok 'no-define' silently. ./configure grep 'DEFS.*-DVERSION=\\"UnIqUe' output && Exit 1 diff --git a/tests/nostdinc.test b/tests/nostdinc.test index 868c0d990..8b780a6e5 100755 --- a/tests/nostdinc.test +++ b/tests/nostdinc.test @@ -17,7 +17,7 @@ # Test to make sure nostdinc option works correctly. # We don't require a C compiler explicitly, because the first part of the -# test (where `Makefile.in' is grepped) does not require one. Insted, we +# test (where 'Makefile.in' is grepped) does not require one. Insted, we # just skip the rest of the test if configure fails to find a working C # compiler. diff --git a/tests/objc.test b/tests/objc.test index d0e7bf06e..f56c76d8c 100755 --- a/tests/objc.test +++ b/tests/objc.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that `.m' extension works. +# Test that '.m' extension works. # From Ralf Corsepius (for C++). . ./defs || Exit 1 diff --git a/tests/output-order.test b/tests/output-order.test index f242a5138..879b678c3 100755 --- a/tests/output-order.test +++ b/tests/output-order.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that `automake -a' output order is stable. +# Test that 'automake -a' output order is stable. # From report by Bruno Haible. . ./defs || Exit 1 diff --git a/tests/output13.test b/tests/output13.test index 53d914d33..065bdb5cb 100755 --- a/tests/output13.test +++ b/tests/output13.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Make sure an AC_CONFIG_FILES, AC_CONFIG_LINKS, and AC_CONFIG_COMMANDS -# are not prerequisites of `all'. +# are not prerequisites of 'all'. . ./defs || Exit 1 diff --git a/tests/output7.test b/tests/output7.test index 57ff35a5c..0f4725fae 100755 --- a/tests/output7.test +++ b/tests/output7.test @@ -49,7 +49,7 @@ SUBDIRS = mk sub EOF # We have to distribute something in foo, because some versions -# of tar do not archive empty directories when passed the `o' +# of tar do not archive empty directories when passed the 'o' # flags. (This was fixed in GNU tar 1.12, but older # versions are still used: NetBSD 1.6.1 ships with tar 1.11.2). # diff --git a/tests/output8.test b/tests/output8.test index 75d711080..1339c67dd 100755 --- a/tests/output8.test +++ b/tests/output8.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check AC_CONFIG_FILES support for files starting with `../'. +# Check AC_CONFIG_FILES support for files starting with '../'. # Report from Bruno Haible. . ./defs || Exit 1 diff --git a/tests/override-html.test b/tests/override-html.test index f0783a667..6438c998b 100755 --- a/tests/override-html.test +++ b/tests/override-html.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that overriding `html' target causes only one "html:" rule to +# Test that overriding 'html' target causes only one "html:" rule to # be output. . ./defs || Exit 1 @@ -27,7 +27,7 @@ END $ACLOCAL $AUTOMAKE -Wno-override -# Overriding `html' should cause only one "html:" rule to be output. +# Overriding 'html' should cause only one "html:" rule to be output. test `grep '^html:' Makefile.in | wc -l` = 1 : diff --git a/tests/override-suggest-local.test b/tests/override-suggest-local.test index 900e26d64..286c8881b 100755 --- a/tests/override-suggest-local.test +++ b/tests/override-suggest-local.test @@ -33,7 +33,7 @@ END $ACLOCAL $AUTOMAKE -Wno-override AUTOMAKE_fails -# There is no such thing as `install-local'. +# There is no such thing as 'install-local'. grep ':.*install-local' stderr && Exit 1 grep ':.*installcheck-local' stderr grep ':.*html-local' stderr diff --git a/tests/parallel-tests-extra-programs.test b/tests/parallel-tests-extra-programs.test index 55f0a4c73..d95d18476 100755 --- a/tests/parallel-tests-extra-programs.test +++ b/tests/parallel-tests-extra-programs.test @@ -109,11 +109,11 @@ $AUTOMAKE -a ./configure # What we check now: -# 1. even if we cannot build the `none.bin' program, all the other +# 1. even if we cannot build the 'none.bin' program, all the other # test programs should be built, and all the other tests should # be run; -# 2. still, since we cannot create the `none.log' file, the -# `test-suite.log' file shouldn't be created (as it depends +# 2. still, since we cannot create the 'none.log' file, the +# 'test-suite.log' file shouldn't be created (as it depends # on *all* the test logs). st=0 diff --git a/tests/parallel-tests-fd-redirect-exeext.test b/tests/parallel-tests-fd-redirect-exeext.test index 46e0b66f0..56d7f5990 100755 --- a/tests/parallel-tests-fd-redirect-exeext.test +++ b/tests/parallel-tests-fd-redirect-exeext.test @@ -16,7 +16,7 @@ # parallel-tests support: redirection of file descriptors with # AM_TESTS_FD_REDIRECT, for tests which are binary executables -# We use some tricks to ensure that all code paths in `lib/am/check2.am' +# We use some tricks to ensure that all code paths in 'lib/am/check2.am' # are covered, even on platforms where $(EXEEXT) would be naturally empty. # See also the more generic test 'check-fd-redirect.test', and # sister test 'parallel-tests-fd-redirect.test'. diff --git a/tests/parallel-tests-fd-redirect.test b/tests/parallel-tests-fd-redirect.test index 90b44ae43..cf7acce10 100755 --- a/tests/parallel-tests-fd-redirect.test +++ b/tests/parallel-tests-fd-redirect.test @@ -16,7 +16,7 @@ # parallel-tests support: redirection of file descriptors with # AM_TESTS_FD_REDIRECT, even when using tests without suffix. -# The sister `parallel-tests-fd-redirect-exeext.test' do a similar +# The sister 'parallel-tests-fd-redirect-exeext.test' do a similar # check for tests that are binary executables. # See also the more generic test 'check-fd-redirect.test'. diff --git a/tests/parallel-tests-fork-bomb.test b/tests/parallel-tests-fork-bomb.test index d992d63a1..2f0016bc1 100755 --- a/tests/parallel-tests-fork-bomb.test +++ b/tests/parallel-tests-fork-bomb.test @@ -83,7 +83,7 @@ AC_OUTPUT END # Another helpful idiom to avoid hanging on capable systems. The subshell -# is needed since `ulimit' might be a special shell builtin. +# is needed since 'ulimit' might be a special shell builtin. if (ulimit -t 8); then ulimit -t 8; fi $ACLOCAL diff --git a/tests/parallel-tests-harderror.test b/tests/parallel-tests-harderror.test index 14256ff22..7b6625190 100755 --- a/tests/parallel-tests-harderror.test +++ b/tests/parallel-tests-harderror.test @@ -55,7 +55,7 @@ $AUTOMAKE -a # DISABLE_HARD_ERRORS is not defined as a make variable, so that it # should be possible to define either from the environment or from # command-line, also when recursive make invocations are involved, -# and also without using the `-e' make flag; this should work also +# and also without using the '-e' make flag; this should work also # for non-GNU make. Moreover, it shouldn't be necessary to define # DISABLE_HARD_ERRORS to "yes" to really disable hard errors: any # non-empty value should do. @@ -70,7 +70,7 @@ cat test-suite.log grep '^ERROR: foo$' test-suite.log cd sub -# The `-e' is wanted here. +# The '-e' is wanted here. DISABLE_HARD_ERRORS='' $MAKE -e check && Exit 1 cat test-suite.log grep '^ERROR: bar$' test-suite.log diff --git a/tests/parallel-tests-log-compiler-1.test b/tests/parallel-tests-log-compiler-1.test index e319c9e29..77bdac406 100755 --- a/tests/parallel-tests-log-compiler-1.test +++ b/tests/parallel-tests-log-compiler-1.test @@ -50,7 +50,7 @@ AM_T_LOG_FLAGS = --am-t AM_LOG_FLAGS = -a LOG_FLAGS = -b -# `t-compiler' is deliberately not distributed; it should be available +# 't-compiler' is deliberately not distributed; it should be available # in PATH also from "make distcheck". EXTRA_DIST = $(TESTS) chk-compiler test-compiler noext-compiler END diff --git a/tests/parallel-tests-log-override-1.test b/tests/parallel-tests-log-override-1.test index 76bedba63..f76d193cc 100755 --- a/tests/parallel-tests-log-override-1.test +++ b/tests/parallel-tests-log-override-1.test @@ -96,7 +96,7 @@ diff orig test-suite.log # Check that the default testsuite log doesn't get unduly modified. # Also check that the testsuite log file doesn't need to be named -# accordingly to the `*.log' pattern. +# accordingly to the '*.log' pattern. chmod a-w test-suite.log TEST_SUITE_LOG=TheLogFile $MAKE -e check ls -l diff --git a/tests/parallel-tests-no-spurious-summary.test b/tests/parallel-tests-no-spurious-summary.test index ce33c7b48..62b4ef64c 100755 --- a/tests/parallel-tests-no-spurious-summary.test +++ b/tests/parallel-tests-no-spurious-summary.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that `:test-results:' directives in test scripts' output doesn't +# Check that ':test-results:' directives in test scripts' output doesn't # originate spurious results in the testsuite summary. am_parallel_tests=yes diff --git a/tests/parallel-tests-once.test b/tests/parallel-tests-once.test index 4962ecdd6..53ee677fb 100755 --- a/tests/parallel-tests-once.test +++ b/tests/parallel-tests-once.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Tests shouldn't be run multiple times by a simple "make check" in a -# clean directory. An early implementation of the `.trs' intermediate +# clean directory. An early implementation of the '.trs' intermediate # files incurred a similar problem. am_parallel_tests=yes diff --git a/tests/parallel-tests-trailing-bslash.test b/tests/parallel-tests-trailing-bslash.test index 129c5a14c..4b3bdf847 100755 --- a/tests/parallel-tests-trailing-bslash.test +++ b/tests/parallel-tests-trailing-bslash.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check that the new testsuite harness do not generate recipes that can -# have a trailing `\', since that can cause spurious syntax errors with +# have a trailing '\', since that can cause spurious syntax errors with # older bash versions (e.g., bash 2.05b). # See automake bug#10436. diff --git a/tests/parallel-tests-unreadable.test b/tests/parallel-tests-unreadable.test index 1750e26f4..7ddb9db5b 100755 --- a/tests/parallel-tests-unreadable.test +++ b/tests/parallel-tests-unreadable.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that the testsuite driver copes well with unreadable `.log' -# and `.trs' files. +# Check that the testsuite driver copes well with unreadable '.log' +# and '.trs' files. am_parallel_tests=yes . ./defs || Exit 1 diff --git a/tests/parallel-tests10.test b/tests/parallel-tests10.test index 322767a1a..239648263 100755 --- a/tests/parallel-tests10.test +++ b/tests/parallel-tests10.test @@ -16,7 +16,7 @@ # Check parallel-tests features: # - trailing whitespace in TESTS -# GNU make 3.80 may expand trailing white space to `.log'. +# GNU make 3.80 may expand trailing white space to '.log'. am_parallel_tests=yes . ./defs || Exit 1 diff --git a/tests/parallel-tests3.test b/tests/parallel-tests3.test index b550b7b6b..f06d0939e 100755 --- a/tests/parallel-tests3.test +++ b/tests/parallel-tests3.test @@ -21,7 +21,7 @@ am_parallel_tests=yes . ./defs || Exit 1 case $MAKE in - *\ -j*) skip_ "\$MAKE contains \`-j'";; + *\ -j*) skip_ "\$MAKE contains '-j'";; esac if using_gmake; then diff --git a/tests/parallel-tests6.test b/tests/parallel-tests6.test index fb908e2b1..eee653810 100755 --- a/tests/parallel-tests6.test +++ b/tests/parallel-tests6.test @@ -16,7 +16,7 @@ # Check parallel-tests features: # - empty TESTS -# BSD make will expand `$(TESTS:=.log)' to `.log' unless overridden. +# BSD make will expand '$(TESTS:=.log)' to '.log' unless overridden. # See parallel-tests10.test for a similar issue. am_parallel_tests=yes diff --git a/tests/parallel-tests8.test b/tests/parallel-tests8.test index fb06a30e3..8e35b6b61 100755 --- a/tests/parallel-tests8.test +++ b/tests/parallel-tests8.test @@ -19,7 +19,7 @@ # - listing $(srcdir)/ or $(top_srcdir)/ in TESTS doesn't work ATM, # and is thus diagnosed. -# TODO: this test should also ensure that the `make' implementation +# TODO: this test should also ensure that the 'make' implementation # properly adheres to rules in all cases. See the Autoconf # manual for the ugliness in this area, when VPATH comes into # play. :-/ diff --git a/tests/percent2.test b/tests/percent2.test index d1b048f47..19af61a52 100755 --- a/tests/percent2.test +++ b/tests/percent2.test @@ -16,7 +16,7 @@ # Another test for -Wportability warning about %-style rules, plus # make sure we don't warn about duplicate definition for -# `${ARCH}/%.$(OBJEXT):'. +# '${ARCH}/%.$(OBJEXT):'. # Report from Ralf Corsepius. . ./defs || Exit 1 diff --git a/tests/plain-functions.sh b/tests/plain-functions.sh index 0c10533cf..e6483dc0f 100644 --- a/tests/plain-functions.sh +++ b/tests/plain-functions.sh @@ -27,7 +27,7 @@ # reason for skip/failure to console, rather than to the *.log files. : ${stderr_fileno_=2} -# Copied from Gnulib's `tests/init.sh'. +# Copied from Gnulib's 'tests/init.sh'. warn_ () { echo "$@" 1>&$stderr_fileno_; } fail_ () { warn_ "$me: failed test: $@"; Exit 1; } skip_ () { warn_ "$me: skipped test: $@"; Exit 77; } diff --git a/tests/pluseq.test b/tests/pluseq.test index 435a078a1..7a8df81da 100755 --- a/tests/pluseq.test +++ b/tests/pluseq.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test `+=' functionality. +# Test '+=' functionality. . ./defs || Exit 1 diff --git a/tests/pluseq11.test b/tests/pluseq11.test index 0090df0e8..4c0b8886c 100755 --- a/tests/pluseq11.test +++ b/tests/pluseq11.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check for bug in variable concatenation with `+=': an extra backslash +# Check for bug in variable concatenation with '+=': an extra backslash # is erroneously retained in the final value. # See also sister test pluseq11b.test. diff --git a/tests/pluseq2.test b/tests/pluseq2.test index d5a3fd95c..102076a6d 100755 --- a/tests/pluseq2.test +++ b/tests/pluseq2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test `+=' with conditionals. +# Test '+=' with conditionals. . ./defs || Exit 1 diff --git a/tests/pluseq3.test b/tests/pluseq3.test index 4085a4640..fc7a496a0 100755 --- a/tests/pluseq3.test +++ b/tests/pluseq3.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Another `+=' test with conditionals. +# Another '+=' test with conditionals. . ./defs || Exit 1 diff --git a/tests/pluseq4.test b/tests/pluseq4.test index e95ed8531..59c82d855 100755 --- a/tests/pluseq4.test +++ b/tests/pluseq4.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Yet another `+=' test. +# Yet another '+=' test. . ./defs || Exit 1 diff --git a/tests/pluseq5.test b/tests/pluseq5.test index f8ffa000b..5db9c47b3 100755 --- a/tests/pluseq5.test +++ b/tests/pluseq5.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test for another `+=' problem. Report from Brian Jones. +# Test for another '+=' problem. Report from Brian Jones. . ./defs || Exit 1 @@ -34,11 +34,11 @@ AUTOMAKE_fails # We expect the following diagnostic: # -# Makefile.am:4: cannot apply `+=' because `INCLUDES' is not defined in +# Makefile.am:4: cannot apply '+=' because 'INCLUDES' is not defined in # Makefile.am:4: the following conditions: # Makefile.am:4: !CHECK -# Makefile.am:4: either define `INCLUDES' in these conditions, or use -# Makefile.am:4: `+=' in the same conditions as the definitions. +# Makefile.am:4: either define 'INCLUDES' in these conditions, or use +# Makefile.am:4: '+=' in the same conditions as the definitions. # Is !CHECK mentioned? grep ':.*!CHECK$' stderr diff --git a/tests/pluseq6.test b/tests/pluseq6.test index 971ed0382..7a8f18706 100755 --- a/tests/pluseq6.test +++ b/tests/pluseq6.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that `+=' works with standard header-vars. +# Test that '+=' works with standard header-vars. . ./defs || Exit 1 diff --git a/tests/pluseq7.test b/tests/pluseq7.test index 6136dbe12..7f5a32ec3 100755 --- a/tests/pluseq7.test +++ b/tests/pluseq7.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that `+=' fails when required. +# Test that '+=' fails when required. . ./defs || Exit 1 diff --git a/tests/pluseq8.test b/tests/pluseq8.test index 0dae83352..724e4d510 100755 --- a/tests/pluseq8.test +++ b/tests/pluseq8.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Another `+=' test. From Paul Berrevoets. +# Another '+=' test. From Paul Berrevoets. . ./defs || Exit 1 diff --git a/tests/pluseq9.test b/tests/pluseq9.test index f127a6ffa..f3c802158 100755 --- a/tests/pluseq9.test +++ b/tests/pluseq9.test @@ -53,11 +53,11 @@ AUTOMAKE_fails # We expect the following diagnostic: # -# Makefile.am:19: cannot apply `+=' because `B' is not defined in +# Makefile.am:19: cannot apply '+=' because 'B' is not defined in # Makefile.am:19: the following conditions: # Makefile.am:19: !COND1 and !COND3 -# Makefile.am:19: either define `B' in these conditions, or use -# Makefile.am:19: `+=' in the same conditions as the definitions. +# Makefile.am:19: either define 'B' in these conditions, or use +# Makefile.am:19: '+=' in the same conditions as the definitions. # # It would be nice if Automake could print only COND3_FALSE and # COND1_FALSE (merging the last two conditions), so we'll support diff --git a/tests/posixsubst-data.test b/tests/posixsubst-data.test index d1630493e..c2c2d7e3e 100755 --- a/tests/posixsubst-data.test +++ b/tests/posixsubst-data.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that POSIX variable expansion `$(var:str=rpl)' works +# Test that POSIX variable expansion '$(var:str=rpl)' works # in when used with the DATA primary. . ./defs || Exit 1 @@ -34,7 +34,7 @@ bar.data bazzardoz: : > $@ CLEANFILES = bar.data bazzardoz -# Also try an empty match suffix, to ensure that the `:=' in there is +# Also try an empty match suffix, to ensure that the ':=' in there is # not confused by the parser with an unportable assignment operator. dist_foo_DATA = $(t1:=.txt) foo_DATA = $(t2:x=.data) diff --git a/tests/posixsubst-extradist.test b/tests/posixsubst-extradist.test index 216a8c914..7e3cf2f54 100755 --- a/tests/posixsubst-extradist.test +++ b/tests/posixsubst-extradist.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that POSIX variable expansion `$(var:str=rpl)' works when used +# Test that POSIX variable expansion '$(var:str=rpl)' works when used # in EXTRA_DIST. . ./defs || Exit 1 @@ -27,7 +27,7 @@ cat > Makefile.am << 'END' t1 = foo1 foo2 t2 = bar.x t3 = baz-y -# Also try an empty match suffix, to ensure that the `:=' in there is +# Also try an empty match suffix, to ensure that the ':=' in there is # not confused by the parser with an unportable assignment operator. EXTRA_DIST = $(t1:=.c) $(t2:.x=.f) $(t3:-y=ar) bazar bar.f: diff --git a/tests/posixsubst-ldadd.test b/tests/posixsubst-ldadd.test index 247789e71..f1cc55b36 100755 --- a/tests/posixsubst-ldadd.test +++ b/tests/posixsubst-ldadd.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that POSIX variable expansion `$(var:str=rpl)' works +# Test that POSIX variable expansion '$(var:str=rpl)' works # when used in LDADD. required=cc @@ -37,7 +37,7 @@ zardoz_PROGRAMS = foo bar noinst_LIBRARIES = libquux1.a libquux2.a libquux3.a -# Also try an empty match suffix, to ensure that the `:=' in there is +# Also try an empty match suffix, to ensure that the ':=' in there is # not confused by the parser with an unportable assignment operator. LDADD = $(u:.lib=.a) bar_LDADD = $(v:=.a) libquux2.a $(w:none=libquux3.a) diff --git a/tests/posixsubst-libraries.test b/tests/posixsubst-libraries.test index 01edcbb98..8e6b26521 100755 --- a/tests/posixsubst-libraries.test +++ b/tests/posixsubst-libraries.test @@ -14,9 +14,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that POSIX variable expansion `$(var:str=rpl)' works when used +# Test that POSIX variable expansion '$(var:str=rpl)' works when used # with the LIBRARIES primary in a "simple" way. -# Keep this in sync with sister test `posixsubst-ltlibraries.test'. +# Keep this in sync with sister test 'posixsubst-ltlibraries.test'. required=cc . ./defs || Exit 1 @@ -32,7 +32,7 @@ cat > Makefile.am << 'END' foolibs = libfoo1 libfoo2 barlibs = libbaz -# Also try an empty match suffix, to ensure that the `:=' in there is +# Also try an empty match suffix, to ensure that the ':=' in there is # not confused by the parser with an unportable assignment operator. lib_LIBRARIES = $(foolibs:=.a) $(barlibs:z=r.a) diff --git a/tests/posixsubst-ltlibraries.test b/tests/posixsubst-ltlibraries.test index d96770900..6a4cbd551 100755 --- a/tests/posixsubst-ltlibraries.test +++ b/tests/posixsubst-ltlibraries.test @@ -14,9 +14,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that POSIX variable expansion `$(var:str=rpl)' works when used +# Test that POSIX variable expansion '$(var:str=rpl)' works when used # with the LTLIBRARIES primary in a "simple" way. -# Keep this in sync with sister test `posixsubst-libraries.test'. +# Keep this in sync with sister test 'posixsubst-libraries.test'. required='cc libtool libtoolize' . ./defs || Exit 1 @@ -32,7 +32,7 @@ cat > Makefile.am << 'END' foolibs = libfoo1 libfoo2 barlibs = libbaz -# Also try an empty match suffix, to ensure that the `:=' in there is +# Also try an empty match suffix, to ensure that the ':=' in there is # not confused by the parser with an unportable assignment operator. lib_LTLIBRARIES = $(foolibs:=.la) $(barlibs:z=r.la) diff --git a/tests/posixsubst-programs.test b/tests/posixsubst-programs.test index 29f08dddc..a02cb9209 100755 --- a/tests/posixsubst-programs.test +++ b/tests/posixsubst-programs.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that POSIX variable expansion `$(var:str=rpl)' works when used +# Test that POSIX variable expansion '$(var:str=rpl)' works when used # with the PROGRAMS primary. required=cc @@ -29,7 +29,7 @@ cat > Makefile.am << 'END' t1 = foo1 foo2 t2 = barx bar2 -# Also try an empty match suffix, to ensure that the `:=' in there is +# Also try an empty match suffix, to ensure that the ':=' in there is # not confused by the parser with an unportable assignment operator. bin_PROGRAMS = $(t1:=-p) $(t2:2=y) diff --git a/tests/posixsubst-scripts.test b/tests/posixsubst-scripts.test index f6c31b3ad..934b82eb4 100755 --- a/tests/posixsubst-scripts.test +++ b/tests/posixsubst-scripts.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that POSIX variable expansion `$(var:str=rpl)' works when used +# Test that POSIX variable expansion '$(var:str=rpl)' works when used # with the SCRIPTS primary. . ./defs || Exit 1 @@ -41,7 +41,7 @@ quux.pl: (echo '#!/bin/perl' && echo '1;') > $@ CLEANFILES = bar1 bar2 quux.pl -# Also try an empty match suffix, to ensure that the `:=' in there is +# Also try an empty match suffix, to ensure that the ':=' in there is # not confused by the parser with an unportable assignment operator. dist_sbin_SCRIPTS = $(t1:=.sh) libexec_SCRIPTS = $(t2:x=) diff --git a/tests/posixsubst-sources.test b/tests/posixsubst-sources.test index 4c7b7408c..ccd61b9b4 100755 --- a/tests/posixsubst-sources.test +++ b/tests/posixsubst-sources.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that POSIX variable expansion `$(var:str=rpl)' works when used +# Test that POSIX variable expansion '$(var:str=rpl)' works when used # with the SOURCES primary. required=cc @@ -32,7 +32,7 @@ FOO = foo.cxx BAR = bar__ BAZ = baz. -# Also try an empty match suffix, to ensure that the `:=' in there is +# Also try an empty match suffix, to ensure that the ':=' in there is # not confused by the parser with an unportable assignment operator. foo_SOURCES = main.c $(FOO:.cxx=.c) dist_foo_SOURCES = $(BAR:__=.c) diff --git a/tests/posixsubst-tests.test b/tests/posixsubst-tests.test index 9b00b28eb..27a451dbf 100755 --- a/tests/posixsubst-tests.test +++ b/tests/posixsubst-tests.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test that POSIX variable expansion `$(var:str=rpl)' works when used +# Test that POSIX variable expansion '$(var:str=rpl)' works when used # with the TESTS special variable. . ./defs || Exit 1 @@ -32,7 +32,7 @@ foo2.test barz: (echo '#!/bin/sh' && echo 'exit 0') > $@ && chmod a+x $@ CLEANFILES = foo2.test barz # For FreeBSD make. -# Also try an empty match suffix, to ensure that the `:=' in there is +# Also try an empty match suffix, to ensure that the ':=' in there is # not confused by the parser with an unportable assignment operator. TESTS = $(t1:=.test) $(t2:x=y) $(t3:2=z) diff --git a/tests/pr211.test b/tests/pr211.test index 6cb445e77..97e28ebc2 100755 --- a/tests/pr211.test +++ b/tests/pr211.test @@ -25,7 +25,7 @@ # # In this case foo.c will be compiled twice but using different # compilers. This is a conflict. In this case the user should -# rename one of the `foo.o's. +# rename one of the 'foo.o' files. required=libtoolize . ./defs || Exit 1 diff --git a/tests/pr224.test b/tests/pr224.test index 265a45bae..51e3c1723 100755 --- a/tests/pr224.test +++ b/tests/pr224.test @@ -19,9 +19,9 @@ # == Description == # Dependency tracking data should be stored in in the relative path # of the source file, as opposed the object file. -# I.e., for `foo.c' in `$(top_srcdir)/bar', being built in -# `$(top_srcdir)/build', the location of the `.deps' directory -# should be `$(top_builddir)/bar/.deps'. +# I.e., for 'foo.c' in '$(top_srcdir)/bar', being built in +# '$(top_srcdir)/build', the location of the '.deps' directory +# should be '$(top_builddir)/bar/.deps'. required=cc . ./defs || Exit 1 diff --git a/tests/pr243.test b/tests/pr243.test index e2586a598..01ba6447f 100755 --- a/tests/pr243.test +++ b/tests/pr243.test @@ -16,7 +16,7 @@ # Test for PR 243. # AM_OUTPUT_DEPENDENCY_COMMANDS doesn't handle -# `Makefile:Makefile.in:tail.mk' in AC_OUTPUT. +# 'Makefile:Makefile.in:tail.mk' in AC_OUTPUT. # # == Report == # If configure.ac has something like: diff --git a/tests/pr307.test b/tests/pr307.test index b1af312b5..69c0f992c 100755 --- a/tests/pr307.test +++ b/tests/pr307.test @@ -82,9 +82,9 @@ $MAKE check # with an output such as: # # mv -f .libs/f.lo f.lo -# mv: cannot stat `.libs/f.lo': No such file or directory +# mv: cannot stat '.libs/f.lo': No such file or directory # -# (This may happen on `f' or on some other files.) +# (This may happen on 'f' or on some other files.) test -f librace.la test -f tst # A proof that check-local was run. diff --git a/tests/pr87.test b/tests/pr87.test index a0c7ac531..d98b66152 100755 --- a/tests/pr87.test +++ b/tests/pr87.test @@ -51,7 +51,7 @@ $ACLOCAL $AUTOCONF $AUTOMAKE -a -# Regression test for bug where `.c.o:' is followed by blank line. +# Regression test for bug where '.c.o:' is followed by blank line. (while read line; do if test "$line" = ".c.o:"; then read next diff --git a/tests/pr9.test b/tests/pr9.test index f1df402f7..36a9f7e95 100755 --- a/tests/pr9.test +++ b/tests/pr9.test @@ -18,10 +18,10 @@ # "make dist" incorrect when AC_CONFIG_AUX_DIR is present. # # == Report == -# When AC_CONFIG_AUX_DIR is set (in my case to `support'), make dist +# When AC_CONFIG_AUX_DIR is set (in my case to 'support'), make dist # no longer automatically includes config.guess, config.sub, install-sh, # ltconfig, ltmain.sh, mdate-sh, missing, and mkinstalldirs. In fact, -# the entire `support/' directory is omitted. +# the entire 'support/' directory is omitted. . ./defs || Exit 1 diff --git a/tests/primary-prefix-invalid-couples.tap b/tests/primary-prefix-invalid-couples.tap index d957b1fda..407c8738f 100755 --- a/tests/primary-prefix-invalid-couples.tap +++ b/tests/primary-prefix-invalid-couples.tap @@ -18,7 +18,7 @@ # Automake should flag them as errors. # Originated from PR/294, extended later (following bug #7647) to # cover more cases. -# See also test `primary-prefix-valid-couples.test'. +# See also test 'primary-prefix-valid-couples.test'. . ./defs || Exit 1 @@ -49,7 +49,7 @@ $ACLOCAL || fatal_ "aclocal failure" # Please keep this list in sync with the list of "Directory Variables" # in the GNU Coding Standards and with the list additional directory # variables provided by autoconf and/or automake (pkgdatadir, pkglibdir, -# ...). See also the hash `%standard_prefix' in the automake script. +# ...). See also the hash '%standard_prefix' in the automake script. prefixes='bin data dataroot doc dvi exec html include info lib libexec lisp locale localstate man man1 man2 man3 man4 man5 man6 man7 man8 man9 oldinclude pdf pkgdata pkginclude pkglib pkglibexec @@ -113,7 +113,7 @@ for primary in $primaries; do # FIXME: Here we'd like to have: # prefixes_ok='info' # but Automake currently fails on that, as it allows the use of - # `foo_TEXINFOS' to declare extra Texinfo sources for the `foo' + # 'foo_TEXINFOS' to declare extra Texinfo sources for the 'foo' # Texinfo manual, as in e.g.: # info_TEXINFOS = foo.texi # foo_TEXINFOS = gpl.texi @@ -129,7 +129,7 @@ for primary in $primaries; do done done >allow.list -# `html_TEXINFOS' is not yet supported, and might never be. +# 'html_TEXINFOS' is not yet supported, and might never be. grep -v '^html TEXINFOS$' all.list | awk '{print NR, $0}' > t mv -f t all.list @@ -184,7 +184,7 @@ done . # Test for valid prefix/primary combinations. -# See also test `primary-prefix-invalid-couples.test'. +# See also test 'primary-prefix-invalid-couples.test'. . ./defs || Exit 1 diff --git a/tests/primary3.test b/tests/primary3.test index ba34b575d..80dab29e2 100755 --- a/tests/primary3.test +++ b/tests/primary3.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure we can build programs ending in `.la' +# Make sure we can build programs ending in '.la' required=cc . ./defs || Exit 1 diff --git a/tests/programs-primary-rewritten.test b/tests/programs-primary-rewritten.test index 7e1bd0b1f..7de6d99bf 100755 --- a/tests/programs-primary-rewritten.test +++ b/tests/programs-primary-rewritten.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Make sure xxx_PROGRAMS gets properly rewritten where needed. These -# checks have been introduced in commit `Release-1-9-254-g9d0eaef' into -# the former test `subst2.test'. +# checks have been introduced in commit 'Release-1-9-254-g9d0eaef' into +# the former test 'subst2.test'. . ./defs || Exit 1 diff --git a/tests/py-compile-basedir.test b/tests/py-compile-basedir.test index dbedbbcee..1504f557e 100755 --- a/tests/py-compile-basedir.test +++ b/tests/py-compile-basedir.test @@ -14,12 +14,12 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test the `--basedir' option of the `py-compile' script, +# Test the '--basedir' option of the 'py-compile' script, required=python . ./defs || Exit 1 -# We'll need to create files in `..', so we need one more subdirectory +# We'll need to create files in '..', so we need one more subdirectory # level in order not to clutter up the top-level tests directory. mkdir sandbox cd sandbox diff --git a/tests/py-compile-basic.test b/tests/py-compile-basic.test index a2871cfbe..5fa3bf68f 100755 --- a/tests/py-compile-basic.test +++ b/tests/py-compile-basic.test @@ -14,9 +14,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test more basic functionalities of the `py-compile' script, +# Test more basic functionalities of the 'py-compile' script, # with "believable" python sources. See also related test -# `py-compile-basic2.test'. +# 'py-compile-basic2.test'. required=python . ./defs || Exit 1 diff --git a/tests/py-compile-basic2.test b/tests/py-compile-basic2.test index 87be03fcd..dfa992c15 100755 --- a/tests/py-compile-basic2.test +++ b/tests/py-compile-basic2.test @@ -14,9 +14,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test more basic functionalities of the `py-compile' script, with +# Test more basic functionalities of the 'py-compile' script, with # dummy python sources, but more complex directory layouts. See also -# related test `py-compile-basic.test'. +# related test 'py-compile-basic.test'. required=python . ./defs || Exit 1 diff --git a/tests/py-compile-destdir.test b/tests/py-compile-destdir.test index 6dfaea022..ab3fe7779 100755 --- a/tests/py-compile-destdir.test +++ b/tests/py-compile-destdir.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test the `--destdir' option of the `py-compile' script, +# Test the '--destdir' option of the 'py-compile' script, required=python . ./defs || Exit 1 diff --git a/tests/py-compile-env.test b/tests/py-compile-env.test index 967f0c46c..5dd7e5f5c 100755 --- a/tests/py-compile-env.test +++ b/tests/py-compile-env.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `py-compile' honours the PYTHON environment variable. +# Make sure 'py-compile' honours the PYTHON environment variable. . ./defs || Exit 1 diff --git a/tests/py-compile-option-terminate.test b/tests/py-compile-option-terminate.test index cd0b7bbc7..f54ffc756 100755 --- a/tests/py-compile-option-terminate.test +++ b/tests/py-compile-option-terminate.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that a non-option argument and the `--' special argument -# explicitly terminate the option list for `py-compile'. +# Check that a non-option argument and the '--' special argument +# explicitly terminate the option list for 'py-compile'. required=python . ./defs || Exit 1 diff --git a/tests/py-compile-usage.test b/tests/py-compile-usage.test index db73ebc12..19883b03d 100755 --- a/tests/py-compile-usage.test +++ b/tests/py-compile-usage.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test `py-compile --help', `py-compile --version', and that `py-compile' +# Test 'py-compile --help', 'py-compile --version', and that 'py-compile' # correctly complains on wrong usage. . ./defs || Exit 1 diff --git a/tests/python-vars.test b/tests/python-vars.test index ff4d13ef2..56c2b619f 100755 --- a/tests/python-vars.test +++ b/tests/python-vars.test @@ -26,10 +26,10 @@ CONFIG_SITE=/dev/null; export CONFIG_SITE PYTHON=python # Update the definition below if the documentation changes. -# Note that the value of the `pythondir' and `pyexecdir' variables can +# Note that the value of the 'pythondir' and 'pyexecdir' variables can # vary among different python installations, so we need more relaxed # and ad-hoc checks for them. Also, more proper "functional" checks -# on them should be done in the `python-virtualenv.test' test. +# on them should be done in the 'python-virtualenv.test' test. PYTHON_VERSION=`$PYTHON -c 'import sys; print(sys.version[:3])'` || Exit 1 PYTHON_PLATFORM=`$PYTHON -c 'import sys; print(sys.platform)'` || Exit 1 PYTHON_EXEC_PREFIX='${exec_prefix}' diff --git a/tests/remake-all-1.test b/tests/remake-all-1.test index 50cc7a09d..f1a85bc17 100755 --- a/tests/remake-all-1.test +++ b/tests/remake-all-1.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check that the "all" target triggers rebuilt of outdated Makefiles. -# See also sister test `remake-all-2.test'. +# See also sister test 'remake-all-2.test'. . ./defs || Exit 1 diff --git a/tests/remake-all-2.test b/tests/remake-all-2.test index 314c970d7..930653232 100755 --- a/tests/remake-all-2.test +++ b/tests/remake-all-2.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Check that the "all" target triggers rebuilt of outdated makefiles. -# This handle the case in which the makefiles are not called `Makefile'. -# See also sister test `remake-all-1.test'. +# This handle the case in which the makefiles are not called 'Makefile'. +# See also sister test 'remake-all-1.test'. . ./defs || Exit 1 diff --git a/tests/remake-deleted-am-2.test b/tests/remake-deleted-am-2.test index 61696393e..1d048be04 100755 --- a/tests/remake-deleted-am-2.test +++ b/tests/remake-deleted-am-2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that inclusion of `.am' fragments by automake does not suffer +# Check that inclusion of '.am' fragments by automake does not suffer # of the "deleted header problem". This test checks deeper inclusion # stacks, and use VPATH builds. diff --git a/tests/remake-deleted-am-subdir.test b/tests/remake-deleted-am-subdir.test index fefe1ff08..3ca850730 100755 --- a/tests/remake-deleted-am-subdir.test +++ b/tests/remake-deleted-am-subdir.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that inclusion of `.am' fragments by automake does not suffer +# Check that inclusion of '.am' fragments by automake does not suffer # of the "deleted header problem". This test does the check when the # SUBDIRS variable is involved. diff --git a/tests/remake-deleted-am.test b/tests/remake-deleted-am.test index 2543bd6c4..4bd77d6fc 100755 --- a/tests/remake-deleted-am.test +++ b/tests/remake-deleted-am.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that inclusion of `.am' fragments by automake does not suffer +# Check that inclusion of '.am' fragments by automake does not suffer # of the "deleted header problem". Basic checks are done here. . ./defs || Exit 1 diff --git a/tests/remake-deleted-m4-file.test b/tests/remake-deleted-m4-file.test index 177979e9e..975d50374 100755 --- a/tests/remake-deleted-m4-file.test +++ b/tests/remake-deleted-m4-file.test @@ -18,7 +18,7 @@ # defined get inlined into the caller. Try with both an indirect # call and a direct one. This can be seen as testing the "deleted # header file" issue w.r.t. aclocal.m4 dependencies. See also related -# test `acloca22.test'. +# test 'acloca22.test'. . ./defs || Exit 1 diff --git a/tests/remake-moved-m4-file.test b/tests/remake-moved-m4-file.test index f1281ab2d..d5a12639f 100755 --- a/tests/remake-moved-m4-file.test +++ b/tests/remake-moved-m4-file.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test remake rules when m4 files get moved among different "include -# dirs" (i.e. those passed to aclocal with `-I' option). +# dirs" (i.e. those passed to aclocal with '-I' option). . ./defs || Exit 1 diff --git a/tests/remake-renamed-am.test b/tests/remake-renamed-am.test index 2ccc9ba1b..f1106f48e 100755 --- a/tests/remake-renamed-am.test +++ b/tests/remake-renamed-am.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that inclusion of `.am' fragments by automake does not suffer +# Check that inclusion of '.am' fragments by automake does not suffer # of the "deleted header problem". This test checks that we can rename # an included .am file without confusing the remake rules. diff --git a/tests/remake-renamed-m4-macro-and-file.test b/tests/remake-renamed-m4-macro-and-file.test index 77e9d3eb5..9f80b31c7 100755 --- a/tests/remake-renamed-m4-macro-and-file.test +++ b/tests/remake-renamed-m4-macro-and-file.test @@ -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. See also related test `acloca22.test'. +# about this situation. See also related test 'acloca22.test'. . ./defs || Exit 1 diff --git a/tests/remake-subdir-from-subdir.test b/tests/remake-subdir-from-subdir.test index 62a8427ef..a5053e07c 100755 --- a/tests/remake-subdir-from-subdir.test +++ b/tests/remake-subdir-from-subdir.test @@ -16,8 +16,8 @@ # Check that remake rules works for adding a new subdirectory from a # pre-existing subdirectory. -# See also the other similar tests `remake-subdir*.test', and the -# related test `aclocal5.test'. +# See also the other similar tests 'remake-subdir*.test', and the +# related test 'aclocal5.test'. . ./defs || Exit 1 diff --git a/tests/remake-subdir-gnu.test b/tests/remake-subdir-gnu.test index cf135face..116790f46 100755 --- a/tests/remake-subdir-gnu.test +++ b/tests/remake-subdir-gnu.test @@ -15,10 +15,10 @@ # along with this program. If not, see . # Check that remake rules works from subdirectories, even using -# `GNUmakefile' as makefiles name. This obviously requires GNU +# 'GNUmakefile' as makefiles name. This obviously requires GNU # make. -# See also the other similar tests `remake-subdir*.test', and the -# related test `aclocal5.test' +# See also the other similar tests 'remake-subdir*.test', and the +# related test 'aclocal5.test' required=GNUmake . ./defs || Exit 1 diff --git a/tests/remake-subdir.test b/tests/remake-subdir.test index 3b3a8c1b0..eb21f382c 100755 --- a/tests/remake-subdir.test +++ b/tests/remake-subdir.test @@ -16,8 +16,8 @@ # Check that remake rules works from subdirectories, even with non-GNU # make implementations. -# See also the other similar tests `remake-subdir*.test', and the -# related test `aclocal5.test'. +# See also the other similar tests 'remake-subdir*.test', and the +# related test 'aclocal5.test'. . ./defs || Exit 1 diff --git a/tests/remake-subdir2.test b/tests/remake-subdir2.test index 97d4baf77..0a5665d97 100755 --- a/tests/remake-subdir2.test +++ b/tests/remake-subdir2.test @@ -16,8 +16,8 @@ # Check that remake rules works from subdirectories, even when makefiles # are not named "Makefile". -# See also the other similar tests `remake-subdir*.test', and the -# related test `aclocal5.test'. +# See also the other similar tests 'remake-subdir*.test', and the +# related test 'aclocal5.test'. . ./defs || Exit 1 diff --git a/tests/remake.test b/tests/remake.test index 75785e835..620d5f8de 100755 --- a/tests/remake.test +++ b/tests/remake.test @@ -16,7 +16,7 @@ # Weak "grepping" test trying to ensure that remaking rules in a subdir # are correctly generated. -# See also sister functional test `remake1a.test'. +# See also sister functional test 'remake1a.test'. . ./defs || Exit 1 diff --git a/tests/remake10a.test b/tests/remake10a.test index 9cb835cf7..66965367d 100755 --- a/tests/remake10a.test +++ b/tests/remake10a.test @@ -16,7 +16,7 @@ # Test remake rules for m4 files included (also recursively) by # configure.ac. -# Keep in sync with sister tests `remake10b.test' and `remake10c.test'. +# Keep in sync with sister tests 'remake10b.test' and 'remake10c.test'. . ./defs || Exit 1 diff --git a/tests/remake10b.test b/tests/remake10b.test index 2fce52c07..f16ec951d 100755 --- a/tests/remake10b.test +++ b/tests/remake10b.test @@ -16,7 +16,7 @@ # Test remake rules for am files included (also recursively) by # Makefile.am. -# Keep in sync with sister tests `remake10a.test' and `remake10c.test'. +# Keep in sync with sister tests 'remake10a.test' and 'remake10c.test'. . ./defs || Exit 1 diff --git a/tests/remake10c.test b/tests/remake10c.test index 51537c129..d0f0d13e1 100755 --- a/tests/remake10c.test +++ b/tests/remake10c.test @@ -16,7 +16,7 @@ # Test remake rules for m4 files included (also recursively) by # aclocal.m4. -# Keep in sync with sister tests `remake10a.test' and `remake10b.test'. +# Keep in sync with sister tests 'remake10a.test' and 'remake10b.test'. . ./defs || Exit 1 diff --git a/tests/remake12.test b/tests/remake12.test index 103e00962..73d85d5b8 100755 --- a/tests/remake12.test +++ b/tests/remake12.test @@ -130,7 +130,7 @@ $FGREP $magic3 quux.in && Exit 1 $FGREP $magic3 zardoz $FGREP $magic1 zardoz && Exit 1 $FGREP $magic2 zardoz && Exit 1 -# After the remake above, the files `zardoz.am' and `zardoz.in' +# After the remake above, the files 'zardoz.am' and 'zardoz.in' # should be no more needed. echo 'endif' > zardoz.am # Put in a syntax error. is_gmake || $MAKE zardoz diff --git a/tests/remake1a.test b/tests/remake1a.test index ce32cbcd8..fede0920a 100755 --- a/tests/remake1a.test +++ b/tests/remake1a.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Make sure remaking rules in subdir are correctly generated. -# See also sister "grepping" test `remake.test'. +# See also sister "grepping" test 'remake.test'. . ./defs || Exit 1 diff --git a/tests/remake3.test b/tests/remake3.test index 361b5f410..96294fb29 100755 --- a/tests/remake3.test +++ b/tests/remake3.test @@ -16,7 +16,7 @@ # Weak "grepping" test trying to ensure that remake rules work for files # in a subdirectory even when there is no Makefile for that subdirectory. -# See also sister functional test `remake3a.test'. +# See also sister functional test 'remake3a.test'. . ./defs || Exit 1 diff --git a/tests/remake3a.test b/tests/remake3a.test index b10c541d7..cac2abcc6 100755 --- a/tests/remake3a.test +++ b/tests/remake3a.test @@ -16,7 +16,7 @@ # Ensure that remake rules work for files in a subdirectory even when # there is no Makefile for that subdirectory. -# See also sister "grepping" test `remake3.test'. +# See also sister "grepping" test 'remake3.test'. . ./defs || Exit 1 diff --git a/tests/remake4.test b/tests/remake4.test index 2205ab417..43f856994 100755 --- a/tests/remake4.test +++ b/tests/remake4.test @@ -21,7 +21,7 @@ # # If this fails, this is likely to be due to a dependency being # given two different name. For instance BSD Make does not know -# that `Makefile' is the same as `./Makefile' +# that 'Makefile' is the same as './Makefile' # # Report from Akim Demaille. diff --git a/tests/remake8a.test b/tests/remake8a.test index ed790245b..1b32a5e93 100755 --- a/tests/remake8a.test +++ b/tests/remake8a.test @@ -18,7 +18,7 @@ # This testcase checks dependency of generated Makefile from Makefile.am, # configure.ac, acinclude.m4, aclocal.m4, and extra m4 files considered # by aclocal. -# Keep this in sync with sister test `remake8b.test', which performs the +# Keep this in sync with sister test 'remake8b.test', which performs the # same checks for a VPATH build. . ./defs || Exit 1 diff --git a/tests/remake8b.test b/tests/remake8b.test index 6754ed3ff..5f687bada 100755 --- a/tests/remake8b.test +++ b/tests/remake8b.test @@ -18,7 +18,7 @@ # This testcase checks dependency of generated Makefile from Makefile.am, # configure.ac, acinclude.m4, aclocal.m4, and extra m4 files considered # by aclocal. -# Keep this in sync with sister test `remake8a.test', which performs the +# Keep this in sync with sister test 'remake8a.test', which performs the # same checks for a in-tree build. . ./defs || Exit 1 diff --git a/tests/remake9a.test b/tests/remake9a.test index 90a780a40..6346ca9f4 100755 --- a/tests/remake9a.test +++ b/tests/remake9a.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test remake rules when configure.ac or its prerequisites change. -# Keep in sync with the other sister tests `remake9*.test'. +# Keep in sync with the other sister tests 'remake9*.test'. . ./defs || Exit 1 diff --git a/tests/remake9b.test b/tests/remake9b.test index 77ebaae1c..dbcf9aca5 100755 --- a/tests/remake9b.test +++ b/tests/remake9b.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test remake rules when Makefile.am or its prerequisites change. -# Keep in sync with the other sister tests `remake9*.test'. +# Keep in sync with the other sister tests 'remake9*.test'. . ./defs || Exit 1 diff --git a/tests/remake9c.test b/tests/remake9c.test index 77a327fac..ba2a6f7ee 100755 --- a/tests/remake9c.test +++ b/tests/remake9c.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test remake rules when acinclude.m4 or its prerequisites change. -# Keep in sync with the other sister tests `remake9*.test'. +# Keep in sync with the other sister tests 'remake9*.test'. . ./defs || Exit 1 diff --git a/tests/remake9d.test b/tests/remake9d.test index 4ebd3e761..6da294974 100755 --- a/tests/remake9d.test +++ b/tests/remake9d.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test remake rules when aclocal.m4 or its prerequisites change. -# Keep in sync with the other sister tests `remake9*.test'. +# Keep in sync with the other sister tests 'remake9*.test'. . ./defs || Exit 1 diff --git a/tests/rst-formatting.test b/tests/rst-formatting.test index ad80aff87..f23c28c2b 100755 --- a/tests/rst-formatting.test +++ b/tests/rst-formatting.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Parallel testsuite harness: check APIs for the registering the -# "global test result" in `*.trs' files, as documented in the automake +# "global test result" in '*.trs' files, as documented in the automake # manual. am_create_testdir=empty diff --git a/tests/self-check-cleanup.tap b/tests/self-check-cleanup.tap index 5a5e77f95..932bb4293 100755 --- a/tests/self-check-cleanup.tap +++ b/tests/self-check-cleanup.tap @@ -15,7 +15,7 @@ # along with this program. If not, see . # Sanity check for the automake testsuite. -# Check creation/removal of temporary test working directory by `./defs'. +# Check creation/removal of temporary test working directory by './defs'. . ./defs || Exit 1 @@ -26,7 +26,7 @@ fi plan_ 42 # We still need a little hack to make ./defs work outside automake's -# tree `tests' subdirectory. Not a big deal. +# tree 'tests' subdirectory. Not a big deal. sed "s|^testbuilddir=.*|testbuilddir='`pwd`'|" ../defs-static >defs-static diff ../defs-static defs-static && fatal_ "failed to edit defs-static" cp ../defs . diff --git a/tests/self-check-configure-help.test b/tests/self-check-configure-help.test index d0442c334..23b9dc7cb 100755 --- a/tests/self-check-configure-help.test +++ b/tests/self-check-configure-help.test @@ -24,7 +24,7 @@ # Prefer real-world data. This is from the help screen of the # configure script from GNU coreutils, with small adaptations. cat > help <<'END' -`configure' configures GNU coreutils 8.14a to adapt to many kinds of systems. +'configure' configures GNU coreutils 8.14a to adapt to many kinds of systems. Usage: ./configure [OPTION]... [VAR=VALUE]... @@ -38,11 +38,11 @@ Configuration: --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit - -q, --quiet, --silent do not print `checking ...' messages + -q, --quiet, --silent do not print 'checking ...' messages --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for `--cache-file=config.cache' + -C, --config-cache alias for '--cache-file=config.cache' -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or `..'] + --srcdir=DIR find the sources in DIR [configure dir or '..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX @@ -50,10 +50,10 @@ Installation directories: --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] -By default, `make install' will install all the files in -`/usr/local/bin', `/usr/local/lib' etc. You can specify -an installation prefix other than `/usr/local' using `--prefix', -for instance `--prefix=$HOME'. +By default, 'make install' will install all the files in +'/usr/local/bin', '/usr/local/lib' etc. You can specify +an installation prefix other than '/usr/local' using '--prefix', +for instance '--prefix=$HOME'. For better control, use the options below. @@ -91,8 +91,8 @@ Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --enable-silent-rules less verbose build output (undo: `make V=1') - --disable-silent-rules verbose build output (undo: `make V=0') + --enable-silent-rules less verbose build output (undo: 'make V=1') + --disable-silent-rules verbose build output (undo: 'make V=0') --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --disable-largefile omit support for large files @@ -148,17 +148,17 @@ Some influential environment variables: CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor - YACC The `Yet Another C Compiler' implementation to use. Defaults to - `bison -y'. Values other than `bison -y' will most likely break + YACC The "Yet Another C Compiler" implementation to use. Defaults to + 'bison -y'. Values other than 'bison -y' will most likely break on most systems. YFLAGS YFLAGS contains the list arguments that will be passed by default to Bison. This script will default YFLAGS to the empty - string to avoid a default value of `-d' given by some make + string to avoid a default value of '-d' given by some make applications. DEFAULT_POSIX2_VERSION POSIX version to default to; see 'config.hin'. -Use these variables to override the choices made by `configure' or to help +Use these variables to override the choices made by 'configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . @@ -241,8 +241,8 @@ compare_extracted_help CPPFLAGS <<'END' END compare_extracted_help YACC <<'END' - YACC The `Yet Another C Compiler' implementation to use. Defaults to - `bison -y'. Values other than `bison -y' will most likely break + YACC The "Yet Another C Compiler" implementation to use. Defaults to + 'bison -y'. Values other than 'bison -y' will most likely break on most systems. END diff --git a/tests/self-check-dir.tap b/tests/self-check-dir.tap index 45da51147..d76646238 100755 --- a/tests/self-check-dir.tap +++ b/tests/self-check-dir.tap @@ -15,7 +15,7 @@ # along with this program. If not, see . # Sanity check for the automake testsuite. -# Check that tests using `./defs' create a proper temporary directory, +# Check that tests using './defs' create a proper temporary directory, # and run in it. Also check that we can prevent the pre-population # and the creation of such directory if we want. diff --git a/tests/self-check-env-sanitize.tap b/tests/self-check-env-sanitize.tap index 30aa03398..d4e6cdb69 100755 --- a/tests/self-check-env-sanitize.tap +++ b/tests/self-check-env-sanitize.tap @@ -46,7 +46,7 @@ do_run () do_grep () { env "$1=foo" $SHELL -c '. ./defs' foo.test 2>&1 1>&5 \ - | grep "foo\.test:.* variable \`$1'.* in the environment.*unsafe" + | grep "foo\.test:.* variable '$1'.* in the environment.*unsafe" } for var in $vars; do diff --git a/tests/self-check-exit.tap b/tests/self-check-exit.tap index 93e00e770..cb655a51f 100755 --- a/tests/self-check-exit.tap +++ b/tests/self-check-exit.tap @@ -16,23 +16,23 @@ # Sanity check for the automake testsuite. # Check that, in case of failing commands, the correct exit status is -# passed to the exit trap installed by the `./defs' script. -# Also check that the `errexit' shell flag is active. +# passed to the exit trap installed by the './defs' script. +# Also check that the 'errexit' shell flag is active. am_create_testdir=no . ./defs || Exit 99 plan_ 34 -# This test becomes more cumbersome if we keep the `errexit' shell flag +# This test becomes more cumbersome if we keep the 'errexit' shell flag # set. And removing it is no big deal, as this test is a TAP-based one, # so that false positives remain very unlikely. set +e AM_TESTS_REEXEC=no; export AM_TESTS_REEXEC -# It's especially important that the `unset' is done before sourcing -# ./defs, i.e., when `set -e' is not active yet, for the benefit of shells +# It's especially important that the 'unset' is done before sourcing +# ./defs, i.e., when 'set -e' is not active yet, for the benefit of shells # (like Bash 2.05 and Solaris 10 /bin/ksh) that returns a non-zero status # when unsetting an already-unset variable. init='stderr_fileno_=2; unset am_explicit_skips; . ./defs' @@ -79,7 +79,7 @@ done : Non-existent program. # Solaris 10 /bin/sh erroneously exit with success right away when the # following three conditions are met at the same time: -# 1. the `errexit' flag is active, +# 1. the 'errexit' flag is active, # 2. an exit trap is installed, and # 3. a non-existing command is issued. # Note that the non-existent command is issued as the last command to diff --git a/tests/self-check-explicit-skips.test b/tests/self-check-explicit-skips.test index ca5fb7ae2..602c31c3b 100755 --- a/tests/self-check-explicit-skips.test +++ b/tests/self-check-explicit-skips.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Sanity check for the automake testsuite. -# Check creation/removal of temporary test working directory by `./defs'. +# Check creation/removal of temporary test working directory by './defs'. am_create_testdir=empty . ./defs || Exit 1 @@ -23,7 +23,7 @@ am_create_testdir=empty test x"$sh_errexit_works" = x"yes" || skip_ "no working shell exit trap" # We still need a little hack to make ./defs work outside automake's -# tree `tests' subdirectory. Not a big deal. +# tree 'tests' subdirectory. Not a big deal. sed "s|^testbuilddir=.*|testbuilddir='`pwd`'|" ../defs-static >defs-static diff ../defs-static defs-static && Exit 99 cp ../defs . diff --git a/tests/self-check-is-blocked-signal.tap b/tests/self-check-is-blocked-signal.tap index fa6c21164..5c0dded07 100755 --- a/tests/self-check-is-blocked-signal.tap +++ b/tests/self-check-is-blocked-signal.tap @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Sanity check for the automake testsuite: the `signal_is_blocked' +# Sanity check for the automake testsuite: the 'signal_is_blocked' # shell function. am_create_testdir=no diff --git a/tests/self-check-is_newest.tap b/tests/self-check-is_newest.tap index c803bd00a..76b69acb4 100755 --- a/tests/self-check-is_newest.tap +++ b/tests/self-check-is_newest.tap @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Sanity check for the automake testsuite: the `is_newest' subroutine. +# Sanity check for the automake testsuite: the 'is_newest' subroutine. . ./defs || Exit 1 @@ -45,7 +45,7 @@ stat c d || : # For debugging. Y c d # Should work on directories too, both empty and not-empty. An older -# implementation of `is_newest' failed if the first argument was a +# implementation of 'is_newest' failed if the first argument was a # directory containing files newer than itself (see automake bug#9147). mkdir u x touch x/foo diff --git a/tests/self-check-me.tap b/tests/self-check-me.tap index f545a635b..9ed430423 100755 --- a/tests/self-check-me.tap +++ b/tests/self-check-me.tap @@ -15,7 +15,7 @@ # along with this program. If not, see . # Sanity check for the automake testsuite. -# Make sure that $me gets automatically defined by `./defs', and that it +# Make sure that $me gets automatically defined by './defs', and that it # can be overridden by the test script. am_create_testdir=no @@ -25,7 +25,7 @@ plan_ 9 AM_TESTS_REEXEC=no; export AM_TESTS_REEXEC -# This test becomes cumbersome if we keep the `errexit' shell flag set. +# This test becomes cumbersome if we keep the 'errexit' shell flag set. # And removing it is no big deal, as this test is a TAP-based one, so # that false positives remain very unlikely. set +e diff --git a/tests/self-check-reexec.tap b/tests/self-check-reexec.tap index eca7d3fa1..7c78e757f 100755 --- a/tests/self-check-reexec.tap +++ b/tests/self-check-reexec.tap @@ -90,7 +90,7 @@ cat > need-bash.test <<'END' #!/bin/false . ./defs # Ensure that the script gets re-executed with bash. Also ensure that -# non-standard syntax used after the inclusion of `./defs' doesn't cause +# non-standard syntax used after the inclusion of './defs' doesn't cause # non-bash shells to fail. # Subshell required to prevent some shells (e.g., Solaris 10 /bin/sh) # from only complaining on stderr but then exiting with exit status 0. diff --git a/tests/self-check-sanity.test b/tests/self-check-sanity.test index 4f0315473..8a6b85c42 100755 --- a/tests/self-check-sanity.test +++ b/tests/self-check-sanity.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Sanity check for the automake testsuite. -# Test the sanity checks performed by the `defs' script. Also check -# that we can use `defs' elsewhere, when we duplicate some of the +# Test the sanity checks performed by the 'defs' script. Also check +# that we can use 'defs' elsewhere, when we duplicate some of the # infrastructure from the automake/tests subdirectory. am_create_testdir=empty @@ -57,7 +57,7 @@ else fi # We still need a little hack to make ./defs work outside automake's -# tree `tests' subdirectory. Not a big deal. +# tree 'tests' subdirectory. Not a big deal. sed "s|^testbuilddir=.*|testbuilddir='`pwd`'|" ../defs-static >defs-static # Redefining *srcdir and *builddir variables in the environment shouldn't # cause problems diff --git a/tests/self-check-seq.tap b/tests/self-check-seq.tap index 5a554fadb..a92230ea5 100755 --- a/tests/self-check-seq.tap +++ b/tests/self-check-seq.tap @@ -15,7 +15,7 @@ # along with this program. If not, see . # Sanity check for the automake testsuite. -# Check the `seq_' subroutine. +# Check the 'seq_' subroutine. . ./defs || Exit 1 @@ -61,8 +61,8 @@ check_err () desc=$1 args=$2 err=$3 (seq_ $args) >output || st=$? # Protect content emitted on stdout/stderr, to avoid sending to the - # TAP driver possible "Bail out!" directives generated by `seq_'. - # Use `grep -c' below for the same reason. + # TAP driver possible "Bail out!" directives generated by 'seq_'. + # Use 'grep -c' below for the same reason. sed 's/^/: /' output command_ok_ "$desc [exit status = 99]" test $st -eq 99 command_ok_ "$desc [error message]" grep -c "seq_: $err" output diff --git a/tests/self-check-tap.test b/tests/self-check-tap.test index 371a5d445..6a2d132fd 100755 --- a/tests/self-check-tap.test +++ b/tests/self-check-tap.test @@ -16,7 +16,7 @@ # Sanity check for the automake testsuite. # Make sure that $am_using_tap gets automatically defined by -# `./defs-static', but can be overridden by the individual tests. +# './defs-static', but can be overridden by the individual tests. . ./defs-static || exit 1 diff --git a/tests/self-check-unindent.tap b/tests/self-check-unindent.tap index a5202dd2e..3591656e6 100755 --- a/tests/self-check-unindent.tap +++ b/tests/self-check-unindent.tap @@ -15,7 +15,7 @@ # along with this program. If not, see . # Sanity check for the automake testsuite. -# Check the `unindent' subroutine. +# Check the 'unindent' subroutine. . ./defs || Exit 1 diff --git a/tests/silent-many-gcc.test b/tests/silent-many-gcc.test index 708b9b7c7..8cba83712 100755 --- a/tests/silent-many-gcc.test +++ b/tests/silent-many-gcc.test @@ -19,7 +19,7 @@ # a stress test by using many different languages at once -- so don't # remove this test script. # This test requires the GNU compilers; keep it in sync with sister test -# `silent-many-generic.test', which should work with generic compilers. +# 'silent-many-generic.test', which should work with generic compilers. required='gcc g++ gfortran lex yacc' . ./defs || Exit 1 @@ -202,7 +202,7 @@ $FGREP 'fo2-foo6.c' Makefile.in depmodes="am_cv_CC_dependencies_compiler_type=gcc \ am_cv_CXX_dependencies_compiler_type=gcc" # This apparently useless "for" loop is here to simplify the syncing -# with sister test `silent-many-generic.test'. +# with sister test 'silent-many-generic.test'. for config_args in \ "$depmodes" do @@ -218,7 +218,7 @@ do # Ensure a clean rebuild. $MAKE clean - # This is required, since these files are not removed by `make clean' + # This is required, since these files are not removed by 'make clean' # (as dictated by the GNU Coding Standards). rm -f *foo5.c *foo6.[ch] sub/*baz5.c sub/*baz6.[ch] diff --git a/tests/silent-many-generic.test b/tests/silent-many-generic.test index 2f4cd9b8a..a7a048726 100755 --- a/tests/silent-many-generic.test +++ b/tests/silent-many-generic.test @@ -19,7 +19,7 @@ # a stress test by using many different languages at once -- so don't # remove this test script. # This test should work with generic compilers; keep it in sync with -# sister test `silent-many-gcc.test', which requires the GNU compilers +# sister test 'silent-many-gcc.test', which requires the GNU compilers # and forces the use of gcc depmode. required='cc c++ fortran fortran77 lex yacc' @@ -110,7 +110,7 @@ test -n "`echo $CXX`" || AC_MSG_ERROR([C++ compiler not found], [77]) test -n "`echo $FC`" || AC_MSG_ERROR([Fortran compiler not found], [77]) test -n "`echo $F77`" || AC_MSG_ERROR([Fortran 77 compiler not found], [77]) -# The SunStudio C++ compiler is unfortunately named `CC' (yuck!), +# The SunStudio C++ compiler is unfortunately named 'CC' (yuck!), # and this can cause problems with our grepping checks on the # output from make. Avoid these problems by invoking a wrapper # script, as filtering the make output proved too fragile. @@ -239,7 +239,7 @@ do # Ensure a clean rebuild. $MAKE clean - # This is required, since these files are not removed by `make clean' + # This is required, since these files are not removed by 'make clean' # (as dictated by the GNU Coding Standards). rm -f *foo5.c *foo6.[ch] sub/*baz5.c sub/*baz6.[ch] diff --git a/tests/silent-nested-vars.test b/tests/silent-nested-vars.test index c9b573375..c579e2cd7 100755 --- a/tests/silent-nested-vars.test +++ b/tests/silent-nested-vars.test @@ -89,7 +89,7 @@ mymake_MAKE=${MAKE-make} MAKE=./mymake export MAKE mymake_MAKE -# As a sanity check, verify that `mymake' rejects Makefiles that +# As a sanity check, verify that 'mymake' rejects Makefiles that # use nested variables. cat > Makefile <<'END' a = $(b$(c)) diff --git a/tests/silent-yacc-headers.test b/tests/silent-yacc-headers.test index aaf0b3020..63baaec8a 100755 --- a/tests/silent-yacc-headers.test +++ b/tests/silent-yacc-headers.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check silent-rules mode for Yacc, when yacc-generated headers are -# involved (i.e., the `-d' option is in *YFLAGS). +# involved (i.e., the '-d' option is in *YFLAGS). required=yacc . ./defs || Exit 1 diff --git a/tests/silent-yacc.test b/tests/silent-yacc.test index 11fa19732..15db6283a 100755 --- a/tests/silent-yacc.test +++ b/tests/silent-yacc.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check silent-rules mode for Yacc. -# Keep this in sync with sister test `silent-yacc-gcc.test'. +# Keep this in sync with sister test 'silent-yacc-gcc.test'. required=yacc . ./defs || Exit 1 diff --git a/tests/silent3.test b/tests/silent3.test index 21609f159..564a49001 100755 --- a/tests/silent3.test +++ b/tests/silent3.test @@ -81,7 +81,7 @@ $MAKE V=1 >stdout || { cat stdout; Exit 1; } cat stdout grep ' -c' stdout grep ' -o libfoo' stdout -# The libtool command line can contain e.g. a `--tag=CC' option. +# The libtool command line can contain e.g. a '--tag=CC' option. sed 's/--tag=[^ ]*/--tag=x/g' stdout | $EGREP '(CC|LD) ' && Exit 1 : diff --git a/tests/silent4.test b/tests/silent4.test index cce38fcfd..44b7eb3a0 100755 --- a/tests/silent4.test +++ b/tests/silent4.test @@ -82,7 +82,7 @@ $MAKE V=1 >stdout || { cat stdout; Exit 1; } cat stdout grep ' -c' stdout grep ' -o libfoo' stdout -# The libtool command line can contain e.g. a `--tag=CC' option. +# The libtool command line can contain e.g. a '--tag=CC' option. sed 's/--tag=[^ ]*/--tag=x/g' stdout | $EGREP '(CC|LD) ' && Exit 1 : diff --git a/tests/silent6.test b/tests/silent6.test index 96ddeb7e9..280d25a1b 100755 --- a/tests/silent6.test +++ b/tests/silent6.test @@ -91,7 +91,7 @@ grep 'AM_V_GEN' Makefile.in $AUTOMAKE --force -Wno-all -Wportability grep 'AM_V_GEN' Makefile.in -# The `silent-rules' option to AM_INIT_AUTOMAKE should work likewise. +# The 'silent-rules' option to AM_INIT_AUTOMAKE should work likewise. $sleep cat > configure.ac <<'END' AC_INIT([silent6], [1.0]) diff --git a/tests/silent7.test b/tests/silent7.test index d376c278f..02ef287de 100755 --- a/tests/silent7.test +++ b/tests/silent7.test @@ -85,7 +85,7 @@ grep 'GEN ' stdout && Exit 1 grep 'cp ' stdout grep 'echo ' stdout -# Ensure that setting `silent-rules' in a Makefile.am produces an error. +# Ensure that setting 'silent-rules' in a Makefile.am produces an error. echo 'AUTOMAKE_OPTIONS = silent-rules' >> Makefile.am AUTOMAKE_fails --force diff --git a/tests/silent8.test b/tests/silent8.test index 257786a62..a2fdb44c1 100755 --- a/tests/silent8.test +++ b/tests/silent8.test @@ -48,7 +48,7 @@ $MAKE V=0 dvi html info ps pdf >stdout || { cat stdout; Exit 1; } cat stdout grep 'DVIPS foo.ps' stdout || Exit 1 grep 'MAKEINFO foo.html' stdout || Exit 1 -# NetBSD make will print `./foo.info' instead of `foo.info'. +# NetBSD make will print './foo.info' instead of 'foo.info'. grep 'MAKEINFO.*foo.info' stdout || Exit 1 grep 'TEXI2DVI foo.dvi' stdout || Exit 1 grep 'TEXI2PDF foo.pdf' stdout || Exit 1 diff --git a/tests/silent9.test b/tests/silent9.test index f8e017ffc..70195a1a8 100755 --- a/tests/silent9.test +++ b/tests/silent9.test @@ -81,7 +81,7 @@ $MAKE V=1 >stdout || { cat stdout; Exit 1; } cat stdout grep ' -c' stdout grep ' -o libfoo' stdout -# The libtool command line can contain e.g. a `--tag=CC' option. +# The libtool command line can contain e.g. a '--tag=CC' option. sed 's/--tag=[^ ]*/--tag=x/g' stdout | $EGREP '(CC|LD) ' && Exit 1 : diff --git a/tests/silentcxx-gcc.test b/tests/silentcxx-gcc.test index 7699ac8a1..d99f1e9cf 100755 --- a/tests/silentcxx-gcc.test +++ b/tests/silentcxx-gcc.test @@ -16,7 +16,7 @@ # Check silent-rules mode for C++. # This test requires the GNU C++ compiler; keep it in sync with sister -# test `silentcxx.test', which should work with generic compilers. +# test 'silentcxx.test', which should work with generic compilers. required=g++ . ./defs || Exit 1 @@ -69,7 +69,7 @@ $FGREP am_cv_CXX_dependencies_compiler_type configure # Force gcc ("fast") depmode. # This apparently useless "for" loop is here to simplify the syncing -# with sister test `silentcxx.test'. +# with sister test 'silentcxx.test'. for config_args in \ am_cv_CXX_dependencies_compiler_type=gcc do diff --git a/tests/silentcxx.test b/tests/silentcxx.test index 192178de4..a41cc2d13 100755 --- a/tests/silentcxx.test +++ b/tests/silentcxx.test @@ -16,7 +16,7 @@ # Check silent-rules mode for C++. # This test should work with generic C++ compilers; keep it in sync with -# sister test `silentcxx-gcc.test', which requires the GNU C++ compiler +# sister test 'silentcxx-gcc.test', which requires the GNU C++ compiler # and forces the use of gcc depmode. required=c++ diff --git a/tests/specflg-dummy.test b/tests/specflg-dummy.test index ae6473a8b..1486f4c9c 100755 --- a/tests/specflg-dummy.test +++ b/tests/specflg-dummy.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check that even "dummy" per-target flags triggers the use of renamed -# objects. I.e., a definition like `foo_CFLAGS = $(AM_CFLAGS)' should +# objects. I.e., a definition like 'foo_CFLAGS = $(AM_CFLAGS)' should # always cause Automake to trigger the semantics for per-target CFLAGS, # even if AM_CFLAGS is undefined. Similarly for other *FLAGS variables # (CXXFLAGS, YFLAGS, LDFLAGS, ...) diff --git a/tests/specflg.test b/tests/specflg.test index b4ffd00f8..9d5c73ca0 100755 --- a/tests/specflg.test +++ b/tests/specflg.test @@ -30,7 +30,7 @@ foo_SOURCES = foo.c foo_CFLAGS = -DBAR END -# Make sure `compile' is required. +# Make sure 'compile' is required. $ACLOCAL AUTOMAKE_fails grep 'required.*compile' stderr diff --git a/tests/specflg2.test b/tests/specflg2.test index be7ebb5a2..9f9569c8d 100755 --- a/tests/specflg2.test +++ b/tests/specflg2.test @@ -36,7 +36,7 @@ END : > ar-lib -# Make sure `compile' is required. +# Make sure 'compile' is required. $ACLOCAL AUTOMAKE_fails grep 'required.*compile' stderr diff --git a/tests/spy.test b/tests/spy.test index 61fba4b17..0d087a41a 100755 --- a/tests/spy.test +++ b/tests/spy.test @@ -37,8 +37,8 @@ # | belief that they were unportable. # On a related topic, the Autoconf manual has the following text: -# | `VPATH' and double-colon rules -# | Any assignment to `VPATH' causes Sun `make' to only execute +# | 'VPATH' and double-colon rules +# | Any assignment to 'VPATH' causes Sun 'make' to only execute # | the first set of double-colon rules. (This comment has been # | here since 1994 and the context has been lost. It's probably # | about SunOS 4. If you can reproduce this, please send us a @@ -57,11 +57,11 @@ # Make attempts to run all matching rules. However at least GNU Make, # NetBSD Make, and FreeBSD Make will detect that $@ was updated by the # first matching rule and skip remaining matches (with the above -# example that means that unless `a' was declared PHONY, only "rule1" -# will be appended to `a' if both b and c have changed). Other +# example that means that unless 'a' was declared PHONY, only "rule1" +# will be appended to 'a' if both b and c have changed). Other # implementations like OSF1 Make and HP-UX Make do not perform such a # check and execute all matching rules whatever they do ("rule1", -# "rule2", abd "rule3" will all be appended to `a' if b and c have +# "rule2", abd "rule3" will all be appended to 'a' if b and c have # changed). # So it seems only non-overlapping ::-rule may be portable. This is diff --git a/tests/stamph2.test b/tests/stamph2.test index a7a3c3431..59a373a35 100755 --- a/tests/stamph2.test +++ b/tests/stamph2.test @@ -51,7 +51,7 @@ test -f sdir1/stamp-h5 test -f sdir1/stamp-h6 test -f sdir1/stamp-h7 -# Make sure `./config.status foo' creates the right stamp file. +# Make sure './config.status foo' creates the right stamp file. # Report from Sander Niemeijer. rm -f stamp-h* diff --git a/tests/subcond2.test b/tests/subcond2.test index d3e367957..0e9f45137 100755 --- a/tests/subcond2.test +++ b/tests/subcond2.test @@ -39,8 +39,8 @@ SUBDIRS = src $(MAYBE_OPT) # - src/result is always built # - opt/result is built conditionally # -# We rely on `distcheck' to run `check-local' and use -# `sanity1' and `sanity2' as evidences that test-build was run. +# We rely on 'distcheck' to run 'check-local' and use +# 'sanity1' and 'sanity2' as evidences that test-build was run. if COND_OPT test-build: all @@ -74,7 +74,7 @@ result: source cp $(srcdir)/source result END -# We want in opt/ the same Makefile as in src/. Let's exercise `include'. +# We want in opt/ the same Makefile as in src/. Let's exercise 'include'. cat >opt/Makefile.am << 'END' include ../src/Makefile.am END diff --git a/tests/subcond3.test b/tests/subcond3.test index 39b39d95b..e84aa4114 100755 --- a/tests/subcond3.test +++ b/tests/subcond3.test @@ -42,8 +42,8 @@ DIST_SUBDIRS = src opt # - src/result is always built # - opt/result is built conditionally # -# We rely on `distcheck' to run `check-local' and use -# `sanity1' and `sanity2' as evidences that test-build was run. +# We rely on 'distcheck' to run 'check-local' and use +# 'sanity1' and 'sanity2' as evidences that test-build was run. test-build: all test -f src/result @@ -75,7 +75,7 @@ result: source cp $(srcdir)/source result END -# We want in opt/ the same Makefile as in src/. Let's exercise `include'. +# We want in opt/ the same Makefile as in src/. Let's exercise 'include'. cat >opt/Makefile.am << 'END' include ../src/Makefile.am END diff --git a/tests/subdir2.test b/tests/subdir2.test index 3ef415108..31e3c61f2 100755 --- a/tests/subdir2.test +++ b/tests/subdir2.test @@ -26,7 +26,7 @@ AC_CONFIG_FILES([one/Makefile one/two/Makefile]) AC_OUTPUT END -# Files required because we are using `--gnu'. +# Files required because we are using '--gnu'. : > INSTALL : > NEWS : > README diff --git a/tests/subdir4.test b/tests/subdir4.test index 2094a1a10..81528b2af 100755 --- a/tests/subdir4.test +++ b/tests/subdir4.test @@ -29,7 +29,7 @@ AC_CONFIG_FILES([lib/Makefile src/Makefile]) AC_OUTPUT END -# Files required because we are using `--gnu'. +# Files required because we are using '--gnu'. : > INSTALL : > NEWS : > README diff --git a/tests/subdir5.test b/tests/subdir5.test index ed8eb7564..a74c746d0 100755 --- a/tests/subdir5.test +++ b/tests/subdir5.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Test to make sure that adding a new directory works. -# This test runs `make' from the top-level directory, the sister test -# `subdir8.test' do it from a subdirectory. +# This test runs 'make' from the top-level directory, the sister test +# 'subdir8.test' do it from a subdirectory. # PR automake/46 . ./defs || Exit 1 @@ -69,7 +69,7 @@ grep '^SUBDIRS = *maude *$' Makefile test -f maude/Makefile # Then we add a new directory by modifying a file included (through -# `m4_include') by configure.ac. +# 'm4_include') by configure.ac. mkdir maude2 # Modified configure dependencies must be newer than config.status. $sleep diff --git a/tests/subdir7.test b/tests/subdir7.test index 2e26b55b2..a2c47a14f 100755 --- a/tests/subdir7.test +++ b/tests/subdir7.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Naming a subdirectory `obj/' is a bad idea. Automake should say so. +# Naming a subdirectory 'obj/' is a bad idea. Automake should say so. . ./defs || Exit 1 diff --git a/tests/subdir8.test b/tests/subdir8.test index f7a464c74..ee9e0b0d5 100755 --- a/tests/subdir8.test +++ b/tests/subdir8.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure that adding a new directory works, even from -# subdirectories. The sister test `subdir5.test' makes sure it works +# subdirectories. The sister test 'subdir5.test' makes sure it works # when make is run from the top-level directory. # PR automake/46 diff --git a/tests/subdirbuiltsources.test b/tests/subdirbuiltsources.test index 23c04f70a..2f507083e 100755 --- a/tests/subdirbuiltsources.test +++ b/tests/subdirbuiltsources.test @@ -31,7 +31,7 @@ AM_PROG_AR AC_OUTPUT END -# Files required because we are using `--gnu'. +# Files required because we are using '--gnu'. : > INSTALL : > NEWS : > README diff --git a/tests/subobj11a.test b/tests/subobj11a.test index d7e3e7cb8..461325af2 100755 --- a/tests/subobj11a.test +++ b/tests/subobj11a.test @@ -18,13 +18,13 @@ # following. If we have a Makefile containg a file inclusion like this: # include .//foo.mk # Solaris make fails with a message like: -# make: ... can't find `/foo.mk': No such file or directory -# make: fatal error ... read of include file `/foo.mk' failed -# (even if the file `foo.mk' exists). The error disappear by collapsing -# the repeated slash `/' characters into a single one. +# make: ... can't find '/foo.mk': No such file or directory +# make: fatal error ... read of include file '/foo.mk' failed +# (even if the file 'foo.mk' exists). The error disappear by collapsing +# the repeated slash '/' characters into a single one. # -# See also sister "grepping" test `subobj11b.test', and related test -# `subobj11c.test'. +# See also sister "grepping" test 'subobj11b.test', and related test +# 'subobj11c.test'. required=cc . ./defs || Exit 1 @@ -38,7 +38,7 @@ END cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = subdir-objects bin_PROGRAMS = foo -## The `.//' below is meant. +## The './/' below is meant. foo_SOURCES = .//src/foo.c END diff --git a/tests/subobj11b.test b/tests/subobj11b.test index fe1de5c52..129b6ea61 100755 --- a/tests/subobj11b.test +++ b/tests/subobj11b.test @@ -18,13 +18,13 @@ # following. If we have a Makefile containg a file inclusion like this: # include .//foo.mk # Solaris make fails with a message like: -# make: ... can't find `/foo.mk': No such file or directory -# make: fatal error ... read of include file `/foo.mk' failed -# (even if the file `foo.mk' exists). The error disappear by collapsing -# the repeated slash `/' characters into a single one. +# make: ... can't find '/foo.mk': No such file or directory +# make: fatal error ... read of include file '/foo.mk' failed +# (even if the file 'foo.mk' exists). The error disappear by collapsing +# the repeated slash '/' characters into a single one. # -# See also "semantic" sister test `subobj11a.test', and related test -# `subobj11c.test'. +# See also "semantic" sister test 'subobj11a.test', and related test +# 'subobj11c.test'. . ./defs || Exit 1 @@ -36,8 +36,8 @@ END cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = subdir-objects bin_PROGRAMS = foo -## The `zardoz' sources should activate a code paths in Automake that -## cannot be sensibly tested by sister test `subobj11a.test'. The other +## The 'zardoz' sources should activate a code paths in Automake that +## cannot be sensibly tested by sister test 'subobj11a.test'. The other ## sources provide some sort of stress testing. foo_SOURCES = \ //server/zardoz0.c \ diff --git a/tests/subobj11c.test b/tests/subobj11c.test index 80d394be5..9f59c5f6c 100755 --- a/tests/subobj11c.test +++ b/tests/subobj11c.test @@ -17,7 +17,7 @@ # Automatic dependency tracking with subdir-objects option active: # check for a pathological case of slash-collapsing in the name of # included makefile fragments (containing dependency info). -# See also related tests `subobj11a.test' and `subobj11b.test'. +# See also related tests 'subobj11a.test' and 'subobj11b.test'. . ./defs || Exit 1 diff --git a/tests/subobj4.test b/tests/subobj4.test index 552e178d7..975f8fbb8 100755 --- a/tests/subobj4.test +++ b/tests/subobj4.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `../foo/foo.cpp' generates a rule. +# Make sure '../foo/foo.cpp' generates a rule. # Report from Dave Brolley. . ./defs || Exit 1 diff --git a/tests/subobj8.test b/tests/subobj8.test index da64f74b2..35b566f50 100755 --- a/tests/subobj8.test +++ b/tests/subobj8.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `compile' is included when subdir-objects is used in a subdir. +# Make sure 'compile' is included when subdir-objects is used in a subdir. . ./defs || Exit 1 diff --git a/tests/subobj9.test b/tests/subobj9.test index dfa70c137..f706edf4d 100755 --- a/tests/subobj9.test +++ b/tests/subobj9.test @@ -19,8 +19,8 @@ # == Report == # When using non-recursive make to build a libtoolize-library from # sources in a subdirectory, 'make distcheck' fails because of incomplete -# cleanup. "make clean" tries to remove `*.o' and `.../.lo' but -# forgets `.../.o'. +# cleanup. "make clean" tries to remove '*.o' and '.../.lo' but +# forgets '.../.o'. required='c++ libtoolize' . ./defs || Exit 1 @@ -83,7 +83,7 @@ $MAKE $MAKE distcheck >output 2>&1 || { cat output; Exit 1; } cat output # GNU Make used to complain that the Makefile contained two rules -# for `src/.dirstamp' and `.//src/.dirstamp'. +# for 'src/.dirstamp' and './/src/.dirstamp'. grep 'overriding commands' output && Exit 1 : diff --git a/tests/subpkg4.test b/tests/subpkg4.test index 28ee7638a..f8e9a2c49 100755 --- a/tests/subpkg4.test +++ b/tests/subpkg4.test @@ -14,8 +14,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to ensure `distdir' fixes the mode of files and directories -# copied into `$(distdir)', even with sub-packages. +# Test to ensure 'distdir' fixes the mode of files and directories +# copied into '$(distdir)', even with sub-packages. . ./defs || Exit 1 diff --git a/tests/subst-no-trailing-empty-line.test b/tests/subst-no-trailing-empty-line.test index f288019cb..2069e3a1c 100755 --- a/tests/subst-no-trailing-empty-line.test +++ b/tests/subst-no-trailing-empty-line.test @@ -18,8 +18,8 @@ # @substitutions@, automake should take care of appending an empty # variable to make sure that line cannot end up substituted as a blank # line (that would confuse HP-UX Make). -# These checks have been introduced in commit `Release-1-9-254-g9d0eaef' -# into the former test `subst2.test'. +# These checks have been introduced in commit 'Release-1-9-254-g9d0eaef' +# into the former test 'subst2.test'. . ./defs || Exit 1 diff --git a/tests/suffix.test b/tests/suffix.test index 1490f6ed7..f9944cb6c 100755 --- a/tests/suffix.test +++ b/tests/suffix.test @@ -16,7 +16,7 @@ # Make sure proper suffix rules for C compilation are produced, and # only once. -# See also related test `suffix2.test'. +# See also related test 'suffix2.test'. . ./defs || Exit 1 diff --git a/tests/suffix10.tap b/tests/suffix10.tap index 14e0f9925..72d0accb8 100755 --- a/tests/suffix10.tap +++ b/tests/suffix10.tap @@ -35,7 +35,7 @@ lib_LTLIBRARIES = libfoo.la libfoo_la_SOURCES = foo.x_ .x_.y: rm -f $@ $@-t -## The leading `:;' works around a bug in bash <= 3.2. +## The leading ':;' works around a bug in bash <= 3.2. :; { echo '/* autogenerated */' \ && echo '%{' \ && echo 'int yylex () {return 0;}' \ diff --git a/tests/suffix11.tap b/tests/suffix11.tap index cfdd8521e..d365fbcc7 100755 --- a/tests/suffix11.tap +++ b/tests/suffix11.tap @@ -16,7 +16,7 @@ # Tests that Automake understands multiple suffix rules on the same line. # PR/371 and PR/372: Reported by Duncan Gibson. -# We also check for suffixes containing `-'. +# We also check for suffixes containing '-'. required=cc . ./defs || Exit 1 diff --git a/tests/suffix2.test b/tests/suffix2.test index afd67d4fc..6dd26164d 100755 --- a/tests/suffix2.test +++ b/tests/suffix2.test @@ -16,7 +16,7 @@ # Make sure proper suffix rules for C compilation are produced, # and only once, even for libtool libraries. -# See also related test `suffix.test'. +# See also related test 'suffix.test'. required=libtoolize . ./defs || Exit 1 diff --git a/tests/suffix3.tap b/tests/suffix3.tap index d5d6ba2be..168c84264 100755 --- a/tests/suffix3.tap +++ b/tests/suffix3.tap @@ -43,7 +43,7 @@ command_ok_ "automake" $AUTOMAKE # The foo.cc intermediate step is implicit, it's a mistake if # Automake requires this file somewhere. Also, Automake should -# not require the file `foo.c' anywhere. +# not require the file 'foo.c' anywhere. command_ok_ "intermediate files not mentioned" \ not $FGREP foo.c Makefile.in # However Automake must figure that foo.zoo is eventually @@ -71,7 +71,7 @@ for target in all distcheck; do $MAKE $target done -# FIXME: should we check that intermediate file `foo.cc' has +# FIXME: should we check that intermediate file 'foo.cc' has # been removed? Or is this requiring too much from the make # implementation? diff --git a/tests/suffix5.test b/tests/suffix5.test index b3852de4c..8608a86b5 100755 --- a/tests/suffix5.test +++ b/tests/suffix5.test @@ -48,7 +48,7 @@ END for auxscript in ar-lib config.guess config.sub; do cp "$am_scriptdir/$auxscript" . \ - || fatal_ "fetching auxiliary script \`$auxscript'" + || fatal_ "fetching auxiliary script '$auxscript'" done $ACLOCAL diff --git a/tests/suffix6.test b/tests/suffix6.test index 4b13ed0da..29ffc4d40 100755 --- a/tests/suffix6.test +++ b/tests/suffix6.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Test to make sure Automake supports implicit rules with dot-less -# extensions. Also make sure that `.o' and `.obj' are handled like -# `.$(OBJEXT)'. See also related "semantic" tests suffix6b.test +# extensions. Also make sure that '.o' and '.obj' are handled like +# '.$(OBJEXT)'. See also related "semantic" tests suffix6b.test # and suffix6c.test. . ./defs || Exit 1 diff --git a/tests/suffix6c.test b/tests/suffix6c.test index 243cf3cb2..80f3bf019 100755 --- a/tests/suffix6c.test +++ b/tests/suffix6c.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure that `.o' and `.obj' are handled like `.$(OBJEXT)'. +# Test to make sure that '.o' and '.obj' are handled like '.$(OBJEXT)'. # See also related "grepping" test suffix6.test. . ./defs || Exit 1 diff --git a/tests/suffix9.test b/tests/suffix9.test index a38f143e3..2c1d73dde 100755 --- a/tests/suffix9.test +++ b/tests/suffix9.test @@ -31,7 +31,7 @@ $ACLOCAL # Automake should follow the bottom route: x_ -> c -> o because # it is shorter. # -# It should not take the "-> y ->" route. We use `y' here so that +# It should not take the "-> y ->" route. We use 'y' here so that # then Automake will complains that YACC is not defined and the test will # fail when this happens. diff --git a/tests/symlink2.test b/tests/symlink2.test index f18fc288b..46e26db9c 100755 --- a/tests/symlink2.test +++ b/tests/symlink2.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure that `automake -a' redirects dangling symlinks. +# Test to make sure that 'automake -a' redirects dangling symlinks. . ./defs || Exit 1 diff --git a/tests/tap-color.test b/tests/tap-color.test index ac4131f67..edc795c66 100755 --- a/tests/tap-color.test +++ b/tests/tap-color.test @@ -23,7 +23,7 @@ am_parallel_tests=yes TERM=ansi; export TERM esc='' -# Escape `[' for grep, below. +# Escape '[' for grep, below. red="$esc\[0;31m" grn="$esc\[0;32m" lgn="$esc\[1;32m" diff --git a/tests/tap-exit.test b/tests/tap-exit.test index f7a34c4eb..236e92da4 100755 --- a/tests/tap-exit.test +++ b/tests/tap-exit.test @@ -16,7 +16,7 @@ # TAP support: # - an exit status != 0 of a test script causes an hard error -# - the `--ignore-exit' option causes the TAP test driver to ignore +# - the '--ignore-exit' option causes the TAP test driver to ignore # exit statuses of the test scripts. am_parallel_tests=yes diff --git a/tests/tap-functions.sh b/tests/tap-functions.sh index 700904b32..3a5db0309 100644 --- a/tests/tap-functions.sh +++ b/tests/tap-functions.sh @@ -84,7 +84,7 @@ planned_=none # diag_ [EXPLANATION] # ------------------ # Report the given text as TAP diagnostic. Assumes the string denoting -# TAP diagnostic lines is stored in the `$diag_string_' variable; this is +# TAP diagnostic lines is stored in the '$diag_string_' variable; this is # done to allow better interplay with TAP drivers that allow such a string # to be configured. diag_ () @@ -92,7 +92,7 @@ diag_ () test $# -eq 0 || echo "$diag_string_ $*" } -# Used by the `diag_' function above. User-overridable. +# Used by the 'diag_' function above. User-overridable. diag_string_="#" # warn_ [EXPLANATION] @@ -156,7 +156,7 @@ result_ () set -x # Restore shell xtraces. } -# Shorthands for common usages of `result_'. +# Shorthands for common usages of 'result_'. ok_ () { result_ 'ok' ${1+"$@"}; } not_ok_ () { result_ 'not ok' ${1+"$@"}; } skip_ () { result_ 'ok' -D SKIP ${1+"$@"}; } @@ -174,7 +174,7 @@ skip_row_ () # skip_all_ [REASON ...] # ---------------------- -# Skip all the tests in a test script. Must be used before calling `plan_' +# Skip all the tests in a test script. Must be used before calling 'plan_' # or reporting any test result. Can't be used from within a subshell. skip_all_ () { @@ -196,7 +196,7 @@ bailout_ () # fatal_ [REASON ...] # ------------------- -# Same as `bailout_'; for compatibility with `plain-functions.sh'. +# Same as 'bailout_'; for compatibility with 'plain-functions.sh'. fatal_ () { bailout_ ${1+"$@"} diff --git a/tests/tap-merge-stdout-stderr.test b/tests/tap-merge-stdout-stderr.test index 22d983496..ce27a80c5 100755 --- a/tests/tap-merge-stdout-stderr.test +++ b/tests/tap-merge-stdout-stderr.test @@ -59,7 +59,7 @@ cat stdout count_test_results total=2 pass=1 fail=0 xpass=0 xfail=0 skip=0 error=1 -# See that the option `--no-merge' can override the effect of `--merge'. +# See that the option '--no-merge' can override the effect of '--merge'. TEST_LOG_DRIVER_FLAGS=--no-merge $MAKE -e check >stdout \ || { cat stdout; Exit 1; } diff --git a/tests/tap-more.test b/tests/tap-more.test index 643ca21b0..6f5d5fe4b 100755 --- a/tests/tap-more.test +++ b/tests/tap-more.test @@ -97,10 +97,10 @@ for try in 0 1; do run_make=$MAKE ;; *) - # Some make implementations (e.g., HP-UX) don't grok `-j', - # some require no space between `-j' and the number of jobs + # Some make implementations (e.g., HP-UX) don't grok '-j', + # some require no space between '-j' and the number of jobs # (e.g., older GNU make versions), and some *do* require a - # space between `-j' and the number of jobs (e.g., Solaris + # space between '-j' and the number of jobs (e.g., Solaris # dmake). We need a runtime test to see what works. echo 'all:' > Makefile for run_make in "$MAKE -j3" "$MAKE -j 3" "$MAKE"; do @@ -134,8 +134,8 @@ for try in 0 1; do # Failure. - # Use `echo' here, since Solaris 10 /bin/sh would try to optimize - # a `:' away after the first iteration, even if it is redirected. + # Use 'echo' here, since Solaris 10 /bin/sh would try to optimize + # a ':' away after the first iteration, even if it is redirected. echo dummy > not-skip echo dummy > bail-out $run_make check >stdout && { cat stdout; Exit 1; } diff --git a/tests/tap-more2.test b/tests/tap-more2.test index 253fdb995..3cefd5800 100755 --- a/tests/tap-more2.test +++ b/tests/tap-more2.test @@ -17,7 +17,7 @@ # More on TAP support: # - more LOG_COMPILER at once for TAP tests # - binary programs in $(TESTS) -# - interactions with `check_*' variables +# - interactions with 'check_*' variables required='cc native' am_parallel_tests=yes diff --git a/tests/tap-no-spurious-summary.test b/tests/tap-no-spurious-summary.test index 881dec961..3b69bf937 100755 --- a/tests/tap-no-spurious-summary.test +++ b/tests/tap-no-spurious-summary.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # TAP support: -# - `:test-results:' directives in test scripts' output doesn't +# - ':test-results:' directives in test scripts' output doesn't # originate spurious results in the testsuite summary am_parallel_tests=yes diff --git a/tests/tap-no-spurious.test b/tests/tap-no-spurious.test index a46ba5c50..7cd188008 100755 --- a/tests/tap-no-spurious.test +++ b/tests/tap-no-spurious.test @@ -84,7 +84,7 @@ set -x # Reset shell xtraces. # The prove(1) utility doesn't bail out on these, so our driver # shouldn't either. -# See comments in `tap-bailout-leading-space.test' for an explanation +# See comments in 'tap-bailout-leading-space.test' for an explanation # of why we don't have a whitespace-prepended "Bail out!" line here. cat >> all.test <<'END' bailout diff --git a/tests/tap-plan-leading-zero.test b/tests/tap-plan-leading-zero.test index f80e051e7..e49fb7607 100755 --- a/tests/tap-plan-leading-zero.test +++ b/tests/tap-plan-leading-zero.test @@ -17,7 +17,7 @@ # TAP support: # - TAP plans with numbers having leading zeroes, as in "1..01" # - TAP "SKIP" plans with multiple zeroes, as in "1..00 # SKIP" -# This is consistent with the behaviour of the `prove' utility. +# This is consistent with the behaviour of the 'prove' utility. am_parallel_tests=yes . ./defs || Exit 1 diff --git a/tests/tap-plan-malformed.test b/tests/tap-plan-malformed.test index 02ae5dfa2..316e54f6c 100755 --- a/tests/tap-plan-malformed.test +++ b/tests/tap-plan-malformed.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # TAP support: a malformed TAP plan is not recognized. The checks in -# here should be consistent with the behaviour of the `prove' utility. +# here should be consistent with the behaviour of the 'prove' utility. am_parallel_tests=yes . ./defs || Exit 1 diff --git a/tests/tap-setup.sh b/tests/tap-setup.sh index 6b69a53da..ab155057a 100755 --- a/tests/tap-setup.sh +++ b/tests/tap-setup.sh @@ -17,7 +17,7 @@ # Auxiliary shell script that copies the common data and files used by # many tests on TAP support into the current directory. It should be # sourced by client test scripts, and assumes the auxiliary test -# `tap-common-setup.test' has been run beforehand (it will error out +# 'tap-common-setup.test' has been run beforehand (it will error out # if this is not the case). # Check that we are running from a proper directory: last thing we want diff --git a/tests/tap-test-number-0.test b/tests/tap-test-number-0.test index 41d77c68b..07d31f571 100755 --- a/tests/tap-test-number-0.test +++ b/tests/tap-test-number-0.test @@ -16,7 +16,7 @@ # TAP support: # - a test result numbered as 0 is to be considered out-of-order -# This is consistent with the behaviour of the `prove' utility. +# This is consistent with the behaviour of the 'prove' utility. am_parallel_tests=yes . ./defs || Exit 1 diff --git a/tests/tar-override.test b/tests/tar-override.test index 393bae8ba..641ce861d 100755 --- a/tests/tar-override.test +++ b/tests/tar-override.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Check that the user can override the tar program used by "make dist" -# at runtime, by redefining the `TAR' environment variable. -# FIXME: currently this works only when the tar format used is `v7' +# at runtime, by redefining the 'TAR' environment variable. +# FIXME: currently this works only when the tar format used is 'v7' # FIXME: (which is the default one). . ./defs || Exit 1 diff --git a/tests/test-driver-create-log-dir.test b/tests/test-driver-create-log-dir.test index 988331e4e..bfca0b938 100755 --- a/tests/test-driver-create-log-dir.test +++ b/tests/test-driver-create-log-dir.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Custom test drivers: if a log file has a directory component (as in -# e.g., `sub/foo.log'), the Automake test harness must ensure that +# e.g., 'sub/foo.log'), the Automake test harness must ensure that # directory exists before calling any custom test driver. am_parallel_tests=yes @@ -26,7 +26,7 @@ AC_OUTPUT END cat > Makefile.am << 'END' -# The extra `.' components below are meant. +# The extra '.' components below are meant. TESTS = sub/foo sub/subsub/bar.test ././sub1/./baz $(TESTS): LOG_DRIVER = $(srcdir)/checkdir-driver diff --git a/tests/test-driver-custom-multitest-recheck.test b/tests/test-driver-custom-multitest-recheck.test index 4bf9c0040..267f0d591 100755 --- a/tests/test-driver-custom-multitest-recheck.test +++ b/tests/test-driver-custom-multitest-recheck.test @@ -18,8 +18,8 @@ # that allow multiple testcases in a single test script. This test not # only checks implementation details in Automake's custom test drivers # support, but also serves as a "usability test" for our APIs. -# See also related tests `test-driver-custom-multitest-recheck2.test' -# and `parallel-tests-recheck-override.test'. +# See also related tests 'test-driver-custom-multitest-recheck2.test' +# and 'parallel-tests-recheck-override.test'. # Keep in sync with 'tap-recheck.test'. am_parallel_tests=yes diff --git a/tests/test-driver-custom-multitest-recheck2.test b/tests/test-driver-custom-multitest-recheck2.test index f6b15b9e4..ddb24aacd 100755 --- a/tests/test-driver-custom-multitest-recheck2.test +++ b/tests/test-driver-custom-multitest-recheck2.test @@ -18,8 +18,8 @@ # that allow multiple testcases in a single test script. In particular, # check that this still works when we override $(TESTS) and $(TEST_LOGS) # at make runtime. -# See also related tests `test-driver-custom-multitest-recheck.test' and -# `parallel-tests-recheck-override.test'. +# See also related tests 'test-driver-custom-multitest-recheck.test' and +# 'parallel-tests-recheck-override.test'. am_parallel_tests=yes . ./defs || Exit 1 @@ -145,8 +145,8 @@ for vpath in : false; do : No need to re-run a.test anymore, but c.test should be rerun, : as it contained an XPASS. And this time, make it fail with : an hard error. - # Use `echo' here, since Solaris 10 /bin/sh would try to optimize - # a `:' away after the first iteration, even if it is redirected. + # Use 'echo' here, since Solaris 10 /bin/sh would try to optimize + # a ':' away after the first iteration, even if it is redirected. echo dummy > c.err env TEST_LOGS='a.log c.log' $MAKE -e recheck >stdout \ && { cat stdout; Exit 1; } @@ -160,7 +160,7 @@ for vpath in : false; do : c.test contained and hard error the last time, so it should be re-run. : This time, make it pass - # Use `echo', not `:'; see comments above for why. + # Use 'echo', not ':'; see comments above for why. echo dummy > c.ok env TESTS='c.test a.test' $MAKE -e recheck >stdout \ || { cat stdout; Exit 1; } diff --git a/tests/test-driver-custom-multitest.test b/tests/test-driver-custom-multitest.test index 0ed00cd39..36cbc5f91 100755 --- a/tests/test-driver-custom-multitest.test +++ b/tests/test-driver-custom-multitest.test @@ -124,7 +124,7 @@ for vpath in : false; do cat stdout cat test-suite.log # Couple of sanity checks. These might need to be updated if the - # `trivial-test-driver' script is changed. + # 'trivial-test-driver' script is changed. $FGREP INVALID.NAME stdout test-suite.log && Exit 1 test -f BAD.LOG && Exit 1 test -f BAD.TRS && Exit 1 @@ -148,9 +148,9 @@ for vpath in : false; do grep "^ERROR: $tst\.t, testcase 6" stdout # Check that the content of, and only of, the test logs with at least - # one failing test case has been copied into `test-suite.log'. Note + # one failing test case has been copied into 'test-suite.log'. Note # that test logs containing skipped or xfailed test cases are *not* - # copied into `test-suite.log' -- a behaviour that deliberately differs + # copied into 'test-suite.log' -- a behaviour that deliberately differs # from the one of the built-in Automake test drivers. grep '%%' test-suite.log # For debugging. grep '%% fail %%' test-suite.log diff --git a/tests/test-driver-custom-no-extra-driver.test b/tests/test-driver-custom-no-extra-driver.test index b177181fb..31000aff1 100755 --- a/tests/test-driver-custom-no-extra-driver.test +++ b/tests/test-driver-custom-no-extra-driver.test @@ -16,7 +16,7 @@ # Check that auxiliary script 'test-driver' doesn't get needlessly # installed or referenced if it's not used, i.e., if the user has -# defined his own `*LOG_DRIVER' variables. +# defined his own '*LOG_DRIVER' variables. am_parallel_tests=yes . ./defs || Exit 1 diff --git a/tests/test-driver-custom.test b/tests/test-driver-custom.test index 74e8a9e66..60ce07418 100755 --- a/tests/test-driver-custom.test +++ b/tests/test-driver-custom.test @@ -99,7 +99,7 @@ sed -e 's|@am_log_wflags@|am|' \ -e 's|@log_wflags@|_|' \ < wrapper.skel > bin/noext-wrapper -# `test-wrapper' is deliberately not made executable. +# 'test-wrapper' is deliberately not made executable. chmod a+x chk-wrapper bin/noext-wrapper # Not needed anymore. diff --git a/tests/test-driver-is-distributed.test b/tests/test-driver-is-distributed.test index 971b8bb97..fb4e540af 100755 --- a/tests/test-driver-is-distributed.test +++ b/tests/test-driver-is-distributed.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check regression of parallel-tests: -# - `test-driver' script not correctly distributed when TESTS is +# - 'test-driver' script not correctly distributed when TESTS is # defined in a subdir Makefile am_create_testdir=empty diff --git a/tests/test-driver-strip-vpath.test b/tests/test-driver-strip-vpath.test index 21bd9c316..967018854 100755 --- a/tests/test-driver-strip-vpath.test +++ b/tests/test-driver-strip-vpath.test @@ -33,7 +33,7 @@ AC_OUTPUT END cat > Makefile.am << 'END' -# The directories of the `bar.test' and `baz.test' tests are deliberately +# The directories of the 'bar.test' and 'baz.test' tests are deliberately # called as the source directory, to verify that the VPATH-stripping code # doesn't get too easily confused. # The $(empty) are for eliciting VPATH rewrites on make implementations diff --git a/tests/test-driver-trs-suffix-registered.test b/tests/test-driver-trs-suffix-registered.test index 00b666933..0c3734f88 100755 --- a/tests/test-driver-trs-suffix-registered.test +++ b/tests/test-driver-trs-suffix-registered.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# parallel-tests support: the following are registered with `.SUFFIXES': +# parallel-tests support: the following are registered with '.SUFFIXES': # - .log # - .trs (used by files that store test results and metadata) # - .test if $(TEST_EXTENSIONS) is not defined diff --git a/tests/test-metadata-global-log.test b/tests/test-metadata-global-log.test index bbd933917..b10f481d2 100755 --- a/tests/test-metadata-global-log.test +++ b/tests/test-metadata-global-log.test @@ -17,8 +17,8 @@ # Custom test drivers and parallel-tests harness: check the documented # semantics for deciding when the content of a test log file should be # copied in the global test-suite.log file. Currently, this is done -# with the use of the reStructuredText field `:copy-in-global-log:' in -# the associated `.trs' files. +# with the use of the reStructuredText field ':copy-in-global-log:' in +# the associated '.trs' files. am_parallel_tests=yes . ./defs || Exit 1 @@ -51,9 +51,9 @@ echo "$test_name: RUN" END chmod a+x passthrough-driver -# The `:test-result:' and `:recheck:' fields and the first line of the +# The ':test-result:' and ':recheck:' fields and the first line of the # log file should be be irrelevant for the decision of whether a test -# output is to be copied in the `test-suite.log'. +# output is to be copied in the 'test-suite.log'. cat > no-1.test <&5 @@ -99,7 +99,7 @@ echo :copy-in-global-log: yes >&5 echo seen yes 1 END -# A lacking `:copy-in-global-log:' implies that the content of +# A lacking ':copy-in-global-log:' implies that the content of # the log file should be copied. cat > yes-2.test <&5 diff --git a/tests/test-metadata-global-result.test b/tests/test-metadata-global-result.test index 8a6020cc2..b2474449c 100755 --- a/tests/test-metadata-global-result.test +++ b/tests/test-metadata-global-result.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Parallel testsuite harness: check APIs for the registering the -# "global test result" in `*.trs' files, as documented in the automake +# "global test result" in '*.trs' files, as documented in the automake # manual. am_parallel_tests=yes @@ -175,7 +175,7 @@ XFAIL: zar-doz ============== END -# Whitespaces before and after `:global-test-result:' are handled OK. +# Whitespaces before and after ':global-test-result:' are handled OK. echo " $tab:global-test-result:PASS" > foo.test echo "${tab}${tab}:global-test-result:${tab} ${tab}SKIP" > zar-doz.x diff --git a/tests/test-metadata-results.test b/tests/test-metadata-results.test index 91102a8b7..5978f7f25 100755 --- a/tests/test-metadata-results.test +++ b/tests/test-metadata-results.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Parallel testsuite harness: check APIs for the registering of test -# results in `*.trs' files, as documented in the automake manual. +# results in '*.trs' files, as documented in the automake manual. am_parallel_tests=yes . ./defs || Exit 1 @@ -61,7 +61,7 @@ mk_check () return $st } -# This must be different from the one defined in `test/defs', as that +# This must be different from the one defined in 'test/defs', as that # assumes that the driver does proper testsuite progress reporting. count_test_results () { @@ -84,7 +84,7 @@ $AUTOMAKE ./configure -# Basic checks. Also that that `:global-test-result:' fields and +# Basic checks. Also that that ':global-test-result:' fields and # "old-style" directives with format "RESULT: test-name" are now ignored. : > foo.test diff --git a/tests/test-missing.test b/tests/test-missing.test index 9bca8fcfb..586190fb2 100755 --- a/tests/test-missing.test +++ b/tests/test-missing.test @@ -57,7 +57,7 @@ cat output $FGREP 'zardoz3.log' output test ! -f test-suite.log -# The errors should persist even after `test-suite.log' +# The errors should persist even after 'test-suite.log' # has been created. : > zardoz.test diff --git a/tests/test-trs-basic.test b/tests/test-trs-basic.test index 53c26db4e..a82d260bd 100755 --- a/tests/test-trs-basic.test +++ b/tests/test-trs-basic.test @@ -15,8 +15,8 @@ # along with this program. If not, see . # Check parallel harness features: -# - creation and removal of `.trs' auxiliary files -# - check some internals regarding the use of `.trs' files. +# - creation and removal of '.trs' auxiliary files +# - check some internals regarding the use of '.trs' files. am_parallel_tests=yes . ./defs || Exit 1 @@ -32,7 +32,7 @@ TEST_LOG_COMPILER = $(SHELL) SH_LOG_COMPILER = $(SHELL) ## Used to check some internal details. And yes, the quotes around -## `$bases' are deliberate: they check for whitespace normalization. +## '$bases' are deliberate: they check for whitespace normalization. tb: $(am__set_TESTS_bases); echo "$$bases" > $@ END @@ -81,7 +81,7 @@ for vpath in : false; do done # -# The `test-suite.stamp' file and the `.trs' files get created by +# The 'test-suite.stamp' file and the '.trs' files get created by # "make check" and removed by "make clean" and "make mostlyclean". # @@ -96,7 +96,7 @@ $MAKE clean test ! -f foo.trs test ! -f bar.trs test ! -f sub/zardoz.trs -# Unrelated `.trs' files shouldn't be removed. +# Unrelated '.trs' files shouldn't be removed. test -f unrelated.trs test -f sub/foo.trs @@ -109,7 +109,7 @@ $MAKE mostlyclean test ! -f foo.trs test ! -f bar.trs test ! -f sub/zardoz.trs -# Unrelated `.trs' files shouldn't be removed. +# Unrelated '.trs' files shouldn't be removed. test -f unrelated.trs test -f sub/foo.trs @@ -127,7 +127,7 @@ TESTS='foo.test bar.sh' $MAKE -e check test -f foo.trs test -f bar.trs test ! -f sub/zardoz.trs -# "make clean" shouldn't remove `.trs' files for tests not in $(TESTS). +# "make clean" shouldn't remove '.trs' files for tests not in $(TESTS). TESTS=bar.sh $MAKE -e clean test -f foo.trs test ! -f bar.trs @@ -148,7 +148,7 @@ TEST_LOGS='foo.log bar.log' $MAKE -e check test -f foo.trs test -f bar.trs test ! -f sub/zardoz.trs -# "make clean" shouldn't remove `.trs' files for tests whose log +# "make clean" shouldn't remove '.trs' files for tests whose log # is not in $(TEST_LOGS). TEST_LOGS=foo.log $MAKE -e clean test ! -f foo.trs diff --git a/tests/test-trs-recover.test b/tests/test-trs-recover.test index 3ee6781d4..3632f61f7 100755 --- a/tests/test-trs-recover.test +++ b/tests/test-trs-recover.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check parallel harness features: -# - recovery from deleted `.trs' files, in various scenarios +# - recovery from deleted '.trs' files, in various scenarios # This test is complex and tricky, but that's acceptable since we are # testing semantics that are potentially complex and tricky. diff --git a/tests/test-trs-recover2.test b/tests/test-trs-recover2.test index 6fd9d1cbb..97268703d 100755 --- a/tests/test-trs-recover2.test +++ b/tests/test-trs-recover2.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Check parallel harness features: -# - recovery from unreadable `.trs' files, in various scenarios +# - recovery from unreadable '.trs' files, in various scenarios am_parallel_tests=yes . ./defs || Exit 1 diff --git a/tests/tests-environment-backcompat.test b/tests/tests-environment-backcompat.test index f773cbdf6..61b2728cf 100755 --- a/tests/tests-environment-backcompat.test +++ b/tests/tests-environment-backcompat.test @@ -39,7 +39,7 @@ echo 'exit (0);' > bar.pl cat > baz.pl << 'END' # With "use strict" enacted, this will cause an error, since the -# variable `$x' is not declared with `my' nor specified with an +# variable '$x' is not declared with 'my' nor specified with an # explicit package name. $x = 0; exit ($x); diff --git a/tests/tests-environment-fd-redirect.test b/tests/tests-environment-fd-redirect.test index 0361affea..d62e537d6 100755 --- a/tests/tests-environment-fd-redirect.test +++ b/tests/tests-environment-fd-redirect.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test for a behaviour of `TESTS_ENVIRONMENT' and `AM_TESTS_ENVIRONMENT' +# Test for a behaviour of 'TESTS_ENVIRONMENT' and 'AM_TESTS_ENVIRONMENT' # w.r.t. file descriptor redirections which, although undocumented, # is nonetheless required by Gnulib's 'tests/init.sh' and by coreutils' # testsuite. diff --git a/tests/trivial-test-driver b/tests/trivial-test-driver index 819865ec5..3968acbf4 100644 --- a/tests/trivial-test-driver +++ b/tests/trivial-test-driver @@ -20,12 +20,12 @@ # test results per test script. # # The exit status of the wrapped script is ignored. Lines in its stdout -# and stderr beginning with `PASS', `FAIL', `XFAIL', `XPASS', `SKIP' or -# `ERROR' count as a test case result with the obviously-corresponding +# and stderr beginning with 'PASS', 'FAIL', 'XFAIL', 'XPASS', 'SKIP' or +# 'ERROR' count as a test case result with the obviously-corresponding # outcome. Every other line is ignored for what concerns the testsuite # outcome. # -# This script is used at least by the `driver-custom-multitest*.test' +# This script is used at least by the 'driver-custom-multitest*.test' # tests. # diff --git a/tests/txinfo16.test b/tests/txinfo16.test index 7ed194e80..173a87a86 100755 --- a/tests/txinfo16.test +++ b/tests/txinfo16.test @@ -79,9 +79,9 @@ $MAKE # it's up-to-date in $(srcdir). # This can be caused by a subtle issue related to VPATH handling # of version.texi (see also the comment in texi-vers.am): because -# stamp-vti is newer than version.texi, the `version.texi: stamp-vti' -# rule is always triggered. Still that's not a reason for `make' -# to think `version.texi' has been created... +# stamp-vti is newer than version.texi, the 'version.texi: stamp-vti' +# rule is always triggered. Still that's not a reason for 'make' +# to think 'version.texi' has been created... test ! -f main.info $MAKE dvi test -f main.dvi diff --git a/tests/txinfo25.test b/tests/txinfo25.test index cb6abaac0..7aa66ae9d 100755 --- a/tests/txinfo25.test +++ b/tests/txinfo25.test @@ -97,9 +97,9 @@ $MAKE # it's up-to-date in $(srcdir). # This can be caused by a subtle issue related to VPATH handling # of version.texi (see also the comment in texi-vers.am): because -# stamp-vti is newer than version.texi, the `version.texi: stamp-vti' -# rule is always triggered. Still that's not a reason for `make' -# to think `version.texi' has been created... +# stamp-vti is newer than version.texi, the 'version.texi: stamp-vti' +# rule is always triggered. Still that's not a reason for 'make' +# to think 'version.texi' has been created... test -f main.info test ! -f other.info $MAKE dvi diff --git a/tests/txinfo30.test b/tests/txinfo30.test index b85ef0fa8..82ea85659 100755 --- a/tests/txinfo30.test +++ b/tests/txinfo30.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Make sure `missing texinfo' does not create empty files. +# Make sure 'missing texinfo' does not create empty files. # Report from Bob Proulx. . ./defs || Exit 1 @@ -31,8 +31,8 @@ echo AC_OUTPUT >>configure.ac cat >makeinfo <<\EOF #!/bin/sh # This script -# 1. fails so `missing' can take over -# 2. does not understand `--version' so `missing' thinks `makeinfo' isn't +# 1. fails so 'missing' can take over +# 2. does not understand '--version' so 'missing' thinks 'makeinfo' isn't # installed exec false EOF diff --git a/tests/txinfo33.test b/tests/txinfo33.test index d7248249a..4bdd76734 100755 --- a/tests/txinfo33.test +++ b/tests/txinfo33.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# DVIS, PDFS, PSS, HTMLS should not be cleaned upon `mostlyclean'. +# DVIS, PDFS, PSS, HTMLS should not be cleaned upon 'mostlyclean'. # Similar to txinfo25.test. required='makeinfo tex texi2dvi-o dvips' diff --git a/tests/txinfo5.test b/tests/txinfo5.test index da32cb61f..9e42823ea 100755 --- a/tests/txinfo5.test +++ b/tests/txinfo5.test @@ -16,7 +16,7 @@ # Test to make sure that texinfo.tex is not required by --cygnus. # Also check that TEXINFOS + cygnus work without requiring the -# `-Wno-override' option. +# '-Wno-override' option. # See also sister test txinfo5b.test. # Report from Ian Taylor. diff --git a/tests/txinfo5b.test b/tests/txinfo5b.test index a52be5a86..c4eac537e 100755 --- a/tests/txinfo5b.test +++ b/tests/txinfo5b.test @@ -25,7 +25,7 @@ AM_MAINTAINER_MODE END cat > Makefile.am << 'END' -# Disable `override' warning to work around an unrelated +# Disable 'override' warning to work around an unrelated # texi+cygnus bug. AUTOMAKE_OPTIONS = -Wno-override info_TEXINFOS = ian.texi diff --git a/tests/txinfo6.test b/tests/txinfo6.test index e8259d0b7..b289efee4 100755 --- a/tests/txinfo6.test +++ b/tests/txinfo6.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Test to make sure `.txi' extension works. +# Test to make sure '.txi' extension works. . ./defs || Exit 1 diff --git a/tests/uninstall-fail.test b/tests/uninstall-fail.test index 69154bb0c..aee1fb5b7 100755 --- a/tests/uninstall-fail.test +++ b/tests/uninstall-fail.test @@ -26,10 +26,10 @@ mkdir d : > d/f chmod a-w d || skip "cannot make directories unwritable" -# On Solaris 10, if `/bin/rm' is run with the `-f' option, it doesn't +# On Solaris 10, if '/bin/rm' is run with the '-f' option, it doesn't # print any error message when failing to remove a file (due to e.g., # "Permission denied"). Yikes. We'll cater to this incompatibility -# by relaxing a test below if a faulty `rm' is detected. +# by relaxing a test below if a faulty 'rm' is detected. st=0; rm -f d/f 2>stderr || st=$? cat stderr >&2 test $st -gt 0 || skip_ "can delete files from unwritable directories" @@ -76,7 +76,7 @@ $MAKE uninstall >output 2>&1 && { cat output; Exit 1; } cat output # # Some shells, like Solaris 10 /bin/sh and /bin/ksh, do not report -# the name of the `cd' builtin upon a chdir error: +# the name of the 'cd' builtin upon a chdir error: # # $ /bin/sh -c 'cd /none' # /bin/sh: /none: does not exist diff --git a/tests/vala4.test b/tests/vala4.test index 3fc06bc9f..2e776edc7 100755 --- a/tests/vala4.test +++ b/tests/vala4.test @@ -40,7 +40,7 @@ chmod +x valac cwd=`pwd` # Use $cwd instead of `pwd` in the && list below to avoid a bug in -# the way Solaris/Heirloom Sh handles `set -e'. +# the way Solaris/Heirloom Sh handles 'set -e'. libtoolize $ACLOCAL diff --git a/tests/vars3.test b/tests/vars3.test index 20f9fbe2d..246ea7095 100755 --- a/tests/vars3.test +++ b/tests/vars3.test @@ -35,7 +35,7 @@ L11: $(thisis) $(ok) EOF $ACLOCAL -# Make sure this warning is print in the `portability' category. +# Make sure this warning is print in the 'portability' category. $AUTOMAKE --warnings=no-error,none,portability 2>stderr \ || { cat stderr >&2; Exit 1; } cat stderr >&2 @@ -60,7 +60,7 @@ grep ':9:.*another Error' stderr $EGREP 'ok|thisis|here' stderr && Exit 1 -# None of these errors be diagnosed with `-Wno-portability'. +# None of these errors be diagnosed with '-Wno-portability'. $AUTOMAKE -Wno-portability # Likewise if we add this in the Makefile.am diff --git a/tests/vartypos.test b/tests/vartypos.test index e3ea16e43..eb924cc06 100755 --- a/tests/vartypos.test +++ b/tests/vartypos.test @@ -44,32 +44,32 @@ $ACLOCAL AUTOMAKE_fails -Wno-extra-portability # The expected diagnostic is: # automake: warnings are treated as errors -# Makefile.am:2: warning: variable `nodist_foo_SOURCES' is defined but no program or -# Makefile.am:2: library has `foo' as canonical name (possible typo) -# Makefile.am:1: warning: variable `foo_SOURCES' is defined but no program or -# Makefile.am:1: library has `foo' as canonical name (possible typo) -# Makefile.am:9: warning: variable `libfoo_a_SOURCES' is defined but no program or -# Makefile.am:9: library has `libfoo_a' as canonical name (possible typo) -# Makefile.am:10: warning: variable `nodist_libfoo_a_SOURCES' is defined but no program or -# Makefile.am:10: library has `libfoo_a' as canonical name (possible typo) -# Makefile.am:11: warning: variable `EXTRA_libfoo_a_SOURCES' is defined but no program or -# Makefile.am:11: library has `libfoo_a' as canonical name (possible typo) -# Makefile.am:3: warning: variable `EXTRA_foo_SOURCES' is defined but no program or -# Makefile.am:3: library has `foo' as canonical name (possible typo) -# Makefile.am:12: warning: variable `libfoo_a_LIBADD' is defined but no program or -# Makefile.am:12: library has `libfoo_a' as canonical name (possible typo) -# Makefile.am:4: warning: variable `foo_LDADD' is defined but no program or -# Makefile.am:4: library has `foo' as canonical name (possible typo) -# Makefile.am:5: warning: variable `foo_LDFLAGS' is defined but no program or -# Makefile.am:5: library has `foo' as canonical name (possible typo) -# Makefile.am:14: warning: variable `EXTRA_libfoo_a_DEPENDENCIES' is defined but no program or -# Makefile.am:14: library has `libfoo_a' as canonical name (possible typo) -# Makefile.am:7: warning: variable `EXTRA_foo_DEPENDENCIES' is defined but no program or -# Makefile.am:7: library has `foo' as canonical name (possible typo) -# Makefile.am:6: warning: variable `foo_DEPENDENCIES' is defined but no program or -# Makefile.am:6: library has `foo' as canonical name (possible typo) -# Makefile.am:13: warning: variable `libfoo_a_DEPENDENCIES' is defined but no program or -# Makefile.am:13: library has `libfoo_a' as canonical name (possible typo) +# Makefile.am:2: warning: variable 'nodist_foo_SOURCES' is defined but no program or +# Makefile.am:2: library has 'foo' as canonical name (possible typo) +# Makefile.am:1: warning: variable 'foo_SOURCES' is defined but no program or +# Makefile.am:1: library has 'foo' as canonical name (possible typo) +# Makefile.am:9: warning: variable 'libfoo_a_SOURCES' is defined but no program or +# Makefile.am:9: library has 'libfoo_a' as canonical name (possible typo) +# Makefile.am:10: warning: variable 'nodist_libfoo_a_SOURCES' is defined but no program or +# Makefile.am:10: library has 'libfoo_a' as canonical name (possible typo) +# Makefile.am:11: warning: variable 'EXTRA_libfoo_a_SOURCES' is defined but no program or +# Makefile.am:11: library has 'libfoo_a' as canonical name (possible typo) +# Makefile.am:3: warning: variable 'EXTRA_foo_SOURCES' is defined but no program or +# Makefile.am:3: library has 'foo' as canonical name (possible typo) +# Makefile.am:12: warning: variable 'libfoo_a_LIBADD' is defined but no program or +# Makefile.am:12: library has 'libfoo_a' as canonical name (possible typo) +# Makefile.am:4: warning: variable 'foo_LDADD' is defined but no program or +# Makefile.am:4: library has 'foo' as canonical name (possible typo) +# Makefile.am:5: warning: variable 'foo_LDFLAGS' is defined but no program or +# Makefile.am:5: library has 'foo' as canonical name (possible typo) +# Makefile.am:14: warning: variable 'EXTRA_libfoo_a_DEPENDENCIES' is defined but no program or +# Makefile.am:14: library has 'libfoo_a' as canonical name (possible typo) +# Makefile.am:7: warning: variable 'EXTRA_foo_DEPENDENCIES' is defined but no program or +# Makefile.am:7: library has 'foo' as canonical name (possible typo) +# Makefile.am:6: warning: variable 'foo_DEPENDENCIES' is defined but no program or +# Makefile.am:6: library has 'foo' as canonical name (possible typo) +# Makefile.am:13: warning: variable 'libfoo_a_DEPENDENCIES' is defined but no program or +# Makefile.am:13: library has 'libfoo_a' as canonical name (possible typo) grep 'as canonical' stderr | grep -v ' .foo. ' | grep -v ' .libfoo_a. ' \ && Exit 1 diff --git a/tests/vtexi.test b/tests/vtexi.test index 09185a8e8..9d1bc2448 100755 --- a/tests/vtexi.test +++ b/tests/vtexi.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Basic checks and some regressions testing on `version.texi' +# Basic checks and some regressions testing on 'version.texi' # support for texinfo files. . ./defs || Exit 1 @@ -53,10 +53,10 @@ grep '^\$(srcdir)/textutils\.info:.*[ /]version\.texi *$' Makefile.in $EGREP 'stamp-vti:.*textutils\.texi( .*)?$' Makefile.in $EGREP 'stamp-vti:.*\$\(top_srcdir\)/configure( .*)?$' Makefile.in -# Check that the path to mdate-sh is correct. Over escaping of `$' -# etc. once led to `\$\(srcdir\)/mdate-sh'. +# Check that the path to mdate-sh is correct. Over escaping of '$' +# etc. once led to '\$\(srcdir\)/mdate-sh'. # Filter out '$(srcdir)/mdate-sh'; there should be no occurrences -# of `.../mdate-sh' left then. +# of '.../mdate-sh' left then. sed 's,\$(srcdir)/mdate-sh,,g' Makefile.in | grep '/mdate-sh' && Exit 1 : diff --git a/tests/vtexi3.test b/tests/vtexi3.test index 679199d5b..9dd3e6712 100755 --- a/tests/vtexi3.test +++ b/tests/vtexi3.test @@ -17,7 +17,7 @@ # Check that vers*.texi files are automatically created and distributed # if @included into a texi source. Also check that they correctly contain # the @values definitions they are advertised to. -# See also the related test `vtexi4.test', which does similar checks, but +# See also the related test 'vtexi4.test', which does similar checks, but # for version.texi only, and requires makeinfo, tex and texi2dvi. . ./defs || Exit 1 diff --git a/tests/vtexi4.test b/tests/vtexi4.test index b422522ea..6038444b5 100755 --- a/tests/vtexi4.test +++ b/tests/vtexi4.test @@ -17,7 +17,7 @@ # Check that the version.texi file is automatically created and distributed # if @included into a texi source. Also check that is correctly defined # @values definitions it is advertised to. -# See also the related test `vtexi3.test', which does similar checks, but +# See also the related test 'vtexi3.test', which does similar checks, but # for more vers*.texi files, and does not require makeinfo, tex and # texi2dvi. diff --git a/tests/warning-groups-win-over-strictness.test b/tests/warning-groups-win-over-strictness.test index 331b3e64c..3d3885d45 100755 --- a/tests/warning-groups-win-over-strictness.test +++ b/tests/warning-groups-win-over-strictness.test @@ -16,7 +16,7 @@ # Check that explicitly-defined warning levels take precedence over # implicit strictness-implied warnings, even when these explicit warning -# levels are "catch-all warnings" (such as `-Wall' and `-Wnone'). +# levels are "catch-all warnings" (such as '-Wall' and '-Wnone'). # Since we are at it, also throw in *.am and *.m4 file inclusions. . ./defs || Exit 1 diff --git a/tests/warnopts.test b/tests/warnopts.test index bb9cfb3e0..1662d91d6 100755 --- a/tests/warnopts.test +++ b/tests/warnopts.test @@ -44,9 +44,9 @@ END $ACLOCAL AUTOMAKE_fails # The expected diagnostic is -# Makefile.am:3: warning: variable `foo_SOURCES' is defined but no program or -# library has `foo' as canonical name (possible typo) -# sub/Makefile.am:2: warning: `INCLUDES' is the old name for `AM_CPPFLAGS' +# Makefile.am:3: warning: variable 'foo_SOURCES' is defined but no program or +# library has 'foo' as canonical name (possible typo) +# sub/Makefile.am:2: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' grep '^Makefile.am:.*foo_SOURCES' stderr grep '^sub/Makefile.am:.*INCLUDES' stderr grep '^sub/Makefile.am:.*foo_SOURCES' stderr && Exit 1 @@ -57,7 +57,7 @@ test `grep -v 'warnings are treated as errors' stderr | wc -l` = 3 # On fast machines the autom4te.cache created during the above run of # $AUTOMAKE is likely to have the same time stamp as the configure.ac # created below; thus causing traces for the old configure.ac to be -# used. We could do `$sleep', but it's faster to erase the +# used. We could do '$sleep', but it's faster to erase the # directory. (Erase autom4te*.cache, not autom4te.cache, because some # bogus installations of Autoconf use a versioned cache). rm -rf autom4te*.cache diff --git a/tests/yacc-basic.test b/tests/yacc-basic.test index 6d1edfd85..71a17e58e 100755 --- a/tests/yacc-basic.test +++ b/tests/yacc-basic.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Basic semantic checks on Yacc support (without yacc-generated headers). -# Keep in sync with sister test `yacc-cxx.test'. +# Keep in sync with sister test 'yacc-cxx.test'. required='cc yacc' . ./defs || Exit 1 diff --git a/tests/yacc-clean-cxx.test b/tests/yacc-clean-cxx.test index 5fc815e6b..7d9e1ae89 100755 --- a/tests/yacc-clean-cxx.test +++ b/tests/yacc-clean-cxx.test @@ -18,7 +18,7 @@ # Yacc sources are cleaned by "make clean", while C++ source and # header files derived from distributed Yacc sources are cleaned by # "make maintainer-clean". -# See also sister test `yacc-clean.test'. +# See also sister test 'yacc-clean.test'. required=yacc . ./defs || Exit 1 @@ -33,7 +33,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 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 diff --git a/tests/yacc-cxx.test b/tests/yacc-cxx.test index 4e4ec9dd4..028624761 100755 --- a/tests/yacc-cxx.test +++ b/tests/yacc-cxx.test @@ -16,7 +16,7 @@ # Basic semantic checks on Yacc + C++ support (when yacc-generated # headers are not involved). -# Keep in sync with sister test `yacc-basic.test'. +# Keep in sync with sister test 'yacc-basic.test'. required=yacc . ./defs || Exit 1 @@ -128,7 +128,7 @@ test -f parse1.cc test -f parse2.c++ test -f foo3-parse3.cxx test -f foo4-parse4.cpp -./configure # we must re-create `Makefile' +./configure # Re-create 'Makefile'. $MAKE maintainer-clean ls -l test ! -f parse1.cc diff --git a/tests/yacc-d-basic.test b/tests/yacc-d-basic.test index 6c75663cb..a633f411a 100755 --- a/tests/yacc-d-basic.test +++ b/tests/yacc-d-basic.test @@ -16,7 +16,7 @@ # Tests Yacc support with yacc-generated headers # (i.e., '-d' in *YFLAGS). -# Keep in sync with sister test `yacc-d-cxx.test'. +# Keep in sync with sister test 'yacc-d-cxx.test'. required='cc yacc' . ./defs || Exit 1 @@ -133,7 +133,7 @@ test -f $distdir/baz/zardoz-parse.h # Sanity check the distribution. yl_distcheck -# While we are at it, make sure that `parse.c' and `parse.h' are erased +# While we are at it, make sure that 'parse.c' and 'parse.h' are erased # by maintainer-clean, and not by distclean. $MAKE distclean test -f foo/parse.c @@ -142,7 +142,7 @@ test -f bar/parse.c test -f bar/parse.h test -f baz/zardoz-parse.c test -f baz/zardoz-parse.h -./configure # We must re-create `Makefile'. +./configure # Re-create 'Makefile'. $MAKE maintainer-clean test ! -f foo/parse.c test ! -f foo/parse.h diff --git a/tests/yacc-d-cxx.test b/tests/yacc-d-cxx.test index a9862a023..2e3c737f6 100755 --- a/tests/yacc-d-cxx.test +++ b/tests/yacc-d-cxx.test @@ -16,7 +16,7 @@ # Various tests on Yacc/C++ support with yacc-generated headers # (i.e., '-d' in *YFLAGS). -# Keep in sync with sister test `yacc-d-basic.test'. +# Keep in sync with sister test 'yacc-d-basic.test'. required=yacc . ./defs || Exit 1 @@ -219,7 +219,7 @@ test -f baz/sub/parse.c++ test -f baz/sub/parse.h++ test -f qux/maude-parse.cxx test -f qux/maude-parse.hxx -./configure # We must re-create `Makefile'. +./configure # Re-create 'Makefile'. $MAKE maintainer-clean test ! -f foo/parse.cc test ! -f foo/parse.hh diff --git a/tests/yacc-d-vpath.test b/tests/yacc-d-vpath.test index dd7487748..78a486a70 100755 --- a/tests/yacc-d-vpath.test +++ b/tests/yacc-d-vpath.test @@ -15,12 +15,12 @@ # along with this program. If not, see . # This test checks that dependent files are updated before including -# in the distribution. `parse.c' depends on `parse.y'. The latter is -# updated so that `parse.c' should be rebuilt. Then we are running -# `make' and `make distdir' and check whether the version of `parse.c' +# in the distribution. 'parse.c' depends on 'parse.y'. The latter is +# updated so that 'parse.c' should be rebuilt. Then we are running +# 'make' and 'make distdir' and check whether the version of 'parse.c' # to be distributed is up to date. -# Please keep this in sync with sister test `yaccvpath.test'. +# Please keep this in sync with sister test 'yaccvpath.test'. required='cc yacc' . ./defs || Exit 1 @@ -37,7 +37,7 @@ foo_SOURCES = parse.y foo.c AM_YFLAGS = -d END -# Original parser, with `foobar'. +# Original parser, with 'foobar'. cat > parse.y << 'END' %{ int yylex () { return 0; } @@ -70,7 +70,7 @@ cd sub $sleep -# New parser, with `fubar'. +# New parser, with 'fubar'. cat > ../parse.y << 'END' %{ int yylex () { return 0; } @@ -86,11 +86,11 @@ $MAKE distdir $FGREP fubar $distdir/parse.c $FGREP FUBAR $distdir/parse.h -# Now check to make sure that `make dist' will rebuild the parser. +# Now check to make sure that 'make dist' will rebuild the parser. $sleep -# New parser, with `maude'. +# New parser, with 'maude'. cat > ../parse.y << 'END' %{ int yylex () { return 0; } diff --git a/tests/yacc-deleted-headers.test b/tests/yacc-deleted-headers.test index ec275180a..cb6af0f1d 100755 --- a/tests/yacc-deleted-headers.test +++ b/tests/yacc-deleted-headers.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Tests that we can recover from deleted headers generated by `yacc -d'. +# Tests that we can recover from deleted headers generated by 'yacc -d'. required=yacc . ./defs || Exit 1 @@ -32,7 +32,7 @@ bin_PROGRAMS = p1 p2 p3 p4 # The order in which files are listed in the p*_SOURCES variables # below is significant, since it causes make failures whenever # the proper definition of BUILT_SOURCES or the declaration of -# extra dependencies for `main3.o' are removed. +# extra dependencies for 'main3.o' are removed. p1_SOURCES = main1.c parse1.y p2_SOURCES = main2.c parse2.y p3_SOURCES = main3.c parse3.y parse3.h @@ -126,7 +126,7 @@ test ! -r p2-parse2.h test -f parse3.h test ! -r parse4.h # Since we declared parse3.h into $(p3_SOURCES), make should be -# able to rebuild it automatically before remaking `p3'. +# able to rebuild it automatically before remaking 'p3'. rm -f $headers $MAKE clean-p3 test ! -f parse3.h # Sanity check. diff --git a/tests/yacc-line.test b/tests/yacc-line.test index 1959048e5..90c5e2f9b 100755 --- a/tests/yacc-line.test +++ b/tests/yacc-line.test @@ -16,8 +16,8 @@ # Check that automake yacc support ensures that yacc-generated C # files use correct "#line" directives. Try also with the -# `subdir-object' option enabled. -# See also sister test `lex-line.test'. +# 'subdir-object' option enabled. +# See also sister test 'lex-line.test'. required=yacc . ./defs || Exit 1 @@ -101,7 +101,7 @@ for vpath in : false; do # Adjusted "#line" should not contain reference to the builddir. $EGREP '#.*line.*(build|\.\.).*\.y' $c_outputs && Exit 1 # Adjusted "#line" should not contain reference to the default - # output file names, e.g., `y.tab.c' and `y.tab.h'. + # output file names, e.g., 'y.tab.c' and 'y.tab.h'. $EGREP '#.*line.*y\.tab\.' $c_outputs && Exit 1 # Don't be excessively strict in grepping, to avoid spurious failures. grep '#.*line.*zardoz\.y' zardoz.c diff --git a/tests/yacc-mix-c-cxx.test b/tests/yacc-mix-c-cxx.test index 62f326003..82350c64e 100755 --- a/tests/yacc-mix-c-cxx.test +++ b/tests/yacc-mix-c-cxx.test @@ -155,10 +155,10 @@ for try in 0 1; do # not override it. run_make=$MAKE;; *) - # Some make implementations (e.g., HP-UX) don't grok `-j', - # some require no space between `-j' and the number of jobs + # Some make implementations (e.g., HP-UX) don't grok '-j', + # some require no space between '-j' and the number of jobs # (e.g., older GNU make versions), and some *do* require a - # space between `-j' and the number of jobs (e.g., Solaris + # space between '-j' and the number of jobs (e.g., Solaris # dmake). We need a runtime test to see what works. echo 'all:' > Makefile for run_make in "$MAKE -j3" "$MAKE -j 3" "$MAKE"; do diff --git a/tests/yacc-pr204.test b/tests/yacc-pr204.test index fa8d4640b..6507b5103 100755 --- a/tests/yacc-pr204.test +++ b/tests/yacc-pr204.test @@ -16,7 +16,7 @@ # For PR 204. # C sources derived from nodist_ yacc sources should not be distributed. -# See also related test `yacc-nodist.test'. +# See also related test 'yacc-nodist.test'. # The tests 'lex-nodist.test' and 'lex-pr204.test' does similar checks # for lex-generated C files. diff --git a/tests/yacc2.test b/tests/yacc2.test index 95784623c..bfab7522d 100755 --- a/tests/yacc2.test +++ b/tests/yacc2.test @@ -16,7 +16,7 @@ # Test to make sure intermediate .h file is not generated nor removed # if (AM_)?YFLAGS do not contain -d. Requested by Jim Meyering. -# See also the related semantic test `yacc-d-basic.test'. +# See also the related semantic test 'yacc-d-basic.test'. . ./defs || Exit 1 diff --git a/tests/yacc7.test b/tests/yacc7.test index c7cd40e41..a3602e9fa 100755 --- a/tests/yacc7.test +++ b/tests/yacc7.test @@ -40,7 +40,7 @@ check-dist: distdir test -f $(distdir)/foo.h END -# The %union will cause Bison to output `#line's in y.tab.h too. +# The %union will cause Bison to output '#line's in y.tab.h too. cat > foo.y << 'END' %union { @@ -70,7 +70,7 @@ rm -f foo.h $MAKE foo.h test -f foo.h -# Make sure `#line ... y.tab.h' gets replaced. +# Make sure '#line ... y.tab.h' gets replaced. $FGREP 'y.tab.h' foo.h && Exit 1 # Make distclean must not erase foo.c nor foo.h (by GNU standards) ... @@ -81,7 +81,7 @@ $MAKE distclean test -f foo.h test -f foo.c # ... but maintainer-clean should. -./configure # Re-create `Makefile'. +./configure # Re-create 'Makefile'. $MAKE maintainer-clean test ! -f foo.h test ! -f foo.c diff --git a/tests/yaccdry.test b/tests/yaccdry.test index 445eb1235..3100ce360 100755 --- a/tests/yaccdry.test +++ b/tests/yaccdry.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Removal recovery rules for headers should not remove files with `make -n'. +# Removal recovery rules for headers should not remove files with 'make -n'. required='cc yacc' . ./defs || Exit 1 diff --git a/tests/yaccpp.test b/tests/yaccpp.test index c3a8b2571..c065a50da 100755 --- a/tests/yaccpp.test +++ b/tests/yaccpp.test @@ -15,7 +15,7 @@ # along with this program. If not, see . # Test to make sure Yacc + C++ is not obviously broken. -# See also related tests `yacc-cxx.test' and `yacc-d-cxx.test', +# See also related tests 'yacc-cxx.test' and 'yacc-d-cxx.test', # which does much more in-depth checks (but requires an actual # Yacc program and a working C++ compiler). diff --git a/tests/yaccvpath.test b/tests/yaccvpath.test index 3ad8454b0..65ab53bf9 100755 --- a/tests/yaccvpath.test +++ b/tests/yaccvpath.test @@ -15,12 +15,12 @@ # along with this program. If not, see . # This test checks that dependent files are updated before including -# in the distribution. `parse.c' depends on `parse.y'. The later is -# updated so that `parse.c' should be rebuild. Then we are running -# `make' and `make distdir' and check whether the version of `parse.c' +# in the distribution. 'parse.c' depends on 'parse.y'. The later is +# updated so that 'parse.c' should be rebuild. Then we are running +# 'make' and 'make distdir' and check whether the version of 'parse.c' # to be distributed is up to date. -# Please keep this in sync with sister test `yacc-d-vpath.test'. +# Please keep this in sync with sister test 'yacc-d-vpath.test'. required='cc yacc' . ./defs || Exit 1 @@ -36,7 +36,7 @@ bin_PROGRAMS = foo foo_SOURCES = parse.y foo.c END -# Original parser, with `foobar'. +# Original parser, with 'foobar'. cat > parse.y << 'END' %{ int yylex () { return 0; } @@ -63,7 +63,7 @@ cd sub $sleep -# New parser, with `fubar'. +# New parser, with 'fubar'. cat > ../parse.y << 'END' %{ int yylex () { return 0; } @@ -77,11 +77,11 @@ $MAKE $MAKE distdir $FGREP fubar $distdir/parse.c -# Now check to make sure that `make dist' will rebuild the parser. +# Now check to make sure that 'make dist' will rebuild the parser. $sleep -# New parser, with `maude'. +# New parser, with 'maude'. cat > ../parse.y << 'END' %{ int yylex () { return 0; } diff --git a/tests/yflags-cmdline-override.test b/tests/yflags-cmdline-override.test index d42fa521c..fb27c0bab 100755 --- a/tests/yflags-cmdline-override.test +++ b/tests/yflags-cmdline-override.test @@ -32,12 +32,12 @@ cat > Makefile.am <<'END' bin_PROGRAMS = foo foo_SOURCES = foo.y # A minor automake wart: automake doesn't generate code to clean -# `*.output' files generated by yacc (it's not even clear if that +# '*.output' files generated by yacc (it's not even clear if that # would be useful in general, so it's probably better to be # conservative). CLEANFILES = foo.output -# Another automake wart: `-d' flag won't be given at automake time, -# so automake won't be able to generate code to clean `foo.h' :-( +# Another automake wart: '-d' flag won't be given at automake time, +# so automake won't be able to generate code to clean 'foo.h' :-( MAINTAINERCLEANFILES = foo.h END diff --git a/tests/yflags-conditional.test b/tests/yflags-conditional.test index c0b5a1982..0cd09d29a 100755 --- a/tests/yflags-conditional.test +++ b/tests/yflags-conditional.test @@ -22,7 +22,7 @@ cat >> configure.ac <<'END' AC_PROG_CC -# `YFLAGS' is AC_SUBST'd by AC_PROG_YACC by default, but we +# 'YFLAGS' is AC_SUBST'd by AC_PROG_YACC by default, but we # don't want this, since it might confuse our error messages. # Also, AM_SUBST_NOTMAKE seems not to help about this. # So we simply define $(YACC) by hand. @@ -131,13 +131,13 @@ grep '^Makefile4\.am:8:.*zardoz_YFLAGS.* conditional contents' stderr # Now let's check we avoid false positives. -# Disable `gnu' warnings because we override the user variable `YFLAGS'. +# Disable 'gnu' warnings because we override the user variable 'YFLAGS'. AUTOMAKE_fails -Wno-gnu Makefile5 grep -v '^Makefile5\.am:.*zardoz_YFLAGS' stderr \ | grep -v ': warnings are treated as errors' \ | grep . && Exit 1 -# Disable `gnu' warnings because we override the user variable `YFLAGS'. +# Disable 'gnu' warnings because we override the user variable 'YFLAGS'. $AUTOMAKE -Wno-gnu Makefile6 : diff --git a/tests/yflags-d-false-positives.test b/tests/yflags-d-false-positives.test index 97b01f5e1..78820caba 100755 --- a/tests/yflags-d-false-positives.test +++ b/tests/yflags-d-false-positives.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check for false positives in automake recognition of `-d' in YFLAGS. +# Check for false positives in automake recognition of '-d' in YFLAGS. . ./defs || Exit 1 diff --git a/tests/yflags-var-expand.test b/tests/yflags-var-expand.test index bf9198e8a..d3bd0d447 100755 --- a/tests/yflags-var-expand.test +++ b/tests/yflags-var-expand.test @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Check that automake expand variables when looking for `-d' in YFLAGS; +# Check that automake expand variables when looking for '-d' in YFLAGS; # for example, the following is supposed to work: # foo_flags = -d # AM_YFLAGS = $(foo_flags) diff --git a/tests/yflags.test b/tests/yflags.test index 5101eedc9..fbc39f56f 100755 --- a/tests/yflags.test +++ b/tests/yflags.test @@ -29,7 +29,7 @@ END chmod a+x fake-yacc # Remove Yacc from the environment, so that it won't interfere -# with `make -e' below. +# with 'make -e' below. unset YACC || : cat >> configure.ac <<'END' diff --git a/tests/yflags2.test b/tests/yflags2.test index d9cf5ed15..a933447d3 100755 --- a/tests/yflags2.test +++ b/tests/yflags2.test @@ -29,7 +29,7 @@ END chmod a+x fake-yacc # Remove Yacc from the environment, so that it won't interfere -# with `make -e' below. +# with 'make -e' below. unset YACC || : cat >> configure.ac <<'END'