========== shellcheck - FAILED ====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/drivers/net/bonding/bond-arp-ip-target.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.hgDKp8QNO0 2025-07-18 15:11:16.738773894 -0700 +++ /tmp/tmp.pLAdzRVq41 2025-07-18 15:11:17.078771838 -0700 @@ -0,0 +1,18 @@ + +In bond-arp-ip-target.sh line 133: + if [ $RET -ne 0 ]; then + ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + if [ "$RET" -ne 0 ]; then + + +In bond-arp-ip-target.sh line 160: + if [ $RET -ne 0 ]; then + ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + if [ "$RET" -ne 0 ]; then + +For more information: + https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...