====== 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.Tsa1exkmsm 2025-07-14 19:23:46.364416372 -0700 +++ /tmp/tmp.cRvnnReZ4E 2025-07-14 19:23:48.051408020 -0700 @@ -0,0 +1,24 @@ + +In bond-arp-ip-target.sh line 55: +ALL_TESTS=" +^-------^ SC2034 (warning): ALL_TESTS appears unused. Verify use (or export if used externally). + + +In bond-arp-ip-target.sh line 134: + 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 161: + 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/SC2034 -- ALL_TESTS appears unused. Verify ... + https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...