====== Checking before the patch ====== ====== Checking the tree with the patch ====== New errors added --- /tmp/tmp.TukAUovNgE 2025-10-21 22:14:06.626759928 -0700 +++ /tmp/tmp.ngcTjslxhl 2025-10-21 22:14:07.078755425 -0700 @@ -51 +51,36 @@ -In vmtest.sh line 400: +In vmtest.sh line 305: + LOG_PREFIX=host log $@ + ^-- SC2068 (error): Double quote array expansions to avoid re-splitting elements. + + +In vmtest.sh line 308: +log_guest() { +^-- SC2120 (warning): log_guest references arguments, but none are ever passed. + + +In vmtest.sh line 309: + LOG_PREFIX=guest log $@ + ^-- SC2068 (error): Double quote array expansions to avoid re-splitting elements. + + +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 +91 @@ -In vmtest.sh line 412: +In vmtest.sh line 401: @@ -60,0 +96 @@ + https://www.shellcheck.net/wiki/SC2068 -- Double quote array expansions to ... @@ -62,2 +98 @@ - https://www.shellcheck.net/wiki/SC2155 -- Declare and assign separately to ... - https://www.shellcheck.net/wiki/SC2164 -- Use 'popd ... || exit' or 'popd .... + https://www.shellcheck.net/wiki/SC2120 -- log_guest references arguments, b...