====== Checking before the patch ====== ====== Checking the tree with the patch ====== New warnings added --- /tmp/tmp.FKkqz9mW0Z 2025-11-04 16:01:15.601749700 -0800 +++ /tmp/tmp.GE3jBQhff4 2025-11-04 16:01:16.071745199 -0800 @@ -51 +51,26 @@ -In vmtest.sh line 400: +In vmtest.sh line 308: +log_guest() { +^-- SC2120 (warning): log_guest references arguments, but none are ever passed. + + +In vmtest.sh line 318: + 2>&1 | log_guest & + ^-------^ SC2119 (info): Use log_guest "$@" if function's $1 should mean script's $1. + + +In vmtest.sh line 344: + --control-port="${TEST_HOST_PORT_LISTENER}" 2>&1 | log_guest + ^-------^ SC2119 (info): Use log_guest "$@" if function's $1 should mean script's $1. + + +In vmtest.sh line 355: + --peer-cid=1 2>&1 | log_guest & + ^-------^ SC2119 (info): Use log_guest "$@" if function's $1 should mean script's $1. + + +In vmtest.sh line 363: + --peer-cid=1 2>&1 | log_guest + ^-------^ SC2119 (info): Use log_guest "$@" if function's $1 should mean script's $1. + + +In vmtest.sh line 389: @@ -56 +81 @@ -In vmtest.sh line 412: +In vmtest.sh line 401: @@ -61,0 +87 @@ + https://www.shellcheck.net/wiki/SC2120 -- log_guest references arguments, b... @@ -63 +88,0 @@ - https://www.shellcheck.net/wiki/SC2164 -- Use 'popd ... || exit' or 'popd ....