diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-12-23 17:35:05 +0100 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-12-23 17:58:32 +0100 |
commit | a5253365f38883f3a21e2bfc595a6c58401794e7 (patch) | |
tree | 5d759bd65fc774db2ac71ea9b99225ec043b32df /lib/tap-driver.sh | |
parent | 16d8cb026a41d9344b1d0cf291b663fd48fa0f45 (diff) | |
download | automake-a5253365f38883f3a21e2bfc595a6c58401794e7.tar.gz |
TAP driver: cosmetic fixes
* lib/tap-driver.sh: Quote 'like this', not `like this'. Remove an
obsolete FIXME. Correctly mark another comment as a TODO rather
than as a FIXME.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'lib/tap-driver.sh')
-rwxr-xr-x | lib/tap-driver.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/tap-driver.sh b/lib/tap-driver.sh index 19aa531de..ee61fc112 100755 --- a/lib/tap-driver.sh +++ b/lib/tap-driver.sh @@ -23,7 +23,7 @@ # bugs to <bug-automake@gnu.org> or send patches to # <automake-patches@gnu.org>. -scriptversion=2011-12-27.17; # UTC +scriptversion=2013-12-23.17; # UTC # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. @@ -53,7 +53,7 @@ Usage: [--enable-hard-errors={yes|no}] [--ignore-exit] [--diagnostic-string=STRING] [--merge|--no-merge] [--comments|--no-comments] [--] TEST-COMMAND -The \`--test-name', \`--log-file' and \`--trs-file' options are mandatory. +The '--test-name', '-log-file' and '--trs-file' options are mandatory. END } @@ -153,8 +153,8 @@ fi -v comments="$comments" \ -v diag_string="$diag_string" \ ' -# FIXME: the usages of "cat >&3" below could be optimized when using -# FIXME: GNU awk, and/on on systems that supports /dev/fd/. +# TODO: the usages of "cat >&3" below could be optimized when using +# GNU awk, and/on on systems that supports /dev/fd/. # Implementation note: in what follows, `result_obj` will be an # associative array that (partly) simulates a TAP result object @@ -209,7 +209,6 @@ function copy_in_global_log() return 0 } -# FIXME: this can certainly be improved ... function get_global_test_result() { if ("ERROR" in test_results_seen) |