commit: 414feeebda73ef58c07a411596569372bbcc19c8
Author: Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Thu Aug 8 08:54:43 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 11 10:10:59 2024 +0000
URL:
https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=414feeeb
test-functions: silence several shellcheck false-positives
Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>
Signed-off-by: Sam James <sam <AT> gentoo.org>
test-functions | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/test-functions b/test-functions
index 00a128a..275d32f 100755
--- a/test-functions
+++ b/test-functions
@@ -1,5 +1,5 @@
#!/bin/sh
-# shellcheck disable=1007,2015,2164,2317,3043
+# shellcheck disable=1007,2015,2031,2164,2317,3043
# Requires mktemp(1), which is not a standard utility, but is commonly
# available. The implementations provided by GNU coreutils, busybox and toybox
@@ -265,6 +265,7 @@ test_esyslog() {
should_log=$2
shift 2
test_description="esyslog $(quote_args "$@")"
+ # shellcheck disable=2034
logged=$(EINFO_LOG=1; esyslog "$@")
case $? in
0)
@@ -694,6 +695,7 @@ test_whenceforth() {
case ${printf_cmd} in
/*) printf() { "${printf_cmd}" "$@"; }
esac
+ # shellcheck disable=2030
PATH=${path}
whenceforth "$@" >/dev/null
)