====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/drivers/net/team/options.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.51oPJxUvUK 2025-09-02 17:21:23.003191300 -0700 +++ /tmp/tmp.dMdSN9vqMi 2025-09-02 17:21:23.651186723 -0700 @@ -0,0 +1,12 @@ + +In options.sh line 39: + if [[ $? != 0 ]]; then + ^-- SC2181 (style): Check exit code directly with e.g. 'if ! mycmd;', not indirectly with $?. + + +In options.sh line 61: + if [[ $? != 0 ]]; then + ^-- SC2181 (style): Check exit code directly with e.g. 'if ! mycmd;', not indirectly with $?. + +For more information: + https://www.shellcheck.net/wiki/SC2181 -- Check exit code directly with e.g...