From: Patrick Steinhardt Date: Mon, 2 Jun 2025 06:44:46 +0000 (+0200) Subject: t/test-lib: fix TAP format for BASH_XTRACEFD warning X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d4ea24b8a9ea7d4778cb7e5c7938d2a74e74a33c;p=thirdparty%2Fgit.git t/test-lib: fix TAP format for BASH_XTRACEFD warning When the Bash version is too old to support BASH_XTRACEFD we print a warning to stderr. This warning is not prefixed with "#", which causes TAP parsers to (wrongly) interpret the warning as part of the protocol. Fix this issue by prefixing the warning with a "#" so that it is treated as comment. Signed-off-by: Patrick Steinhardt Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib.sh b/t/test-lib.sh index 6ce8570226..8c0d76ea5f 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -470,7 +470,7 @@ then then : Executed by a Bash version supporting BASH_XTRACEFD. Good. else - echo >&2 "warning: ignoring -x; '$0' is untraceable without BASH_XTRACEFD" + echo >&2 "# warning: ignoring -x; '$0' is untraceable without BASH_XTRACEFD" trace= fi fi