ShellCheck - shell script analysis tool version: 0.10.0 license: GNU General Public License, version 3 website: https://www.shellcheck.net Redirect to /tmp/tmp.51oPJxUvUK and /tmp/tmp.dMdSN9vqMi Tree base: 3586018d5c3d ("net: macb: Validate the value of base_time properly") Now at: 57a3242c01f4 ("selftests: net: Add tests to verify team driver option set and get.") ====== Checking before the patch ====== ====== Checking the tree with the patch ====== Checking tools/testing/selftests/drivers/net/team/options.sh - 8923621aa6103a750c8a06390ec378233a35970a1108624075d2d8955a2c557c 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...