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.Tsa1exkmsm and /tmp/tmp.cRvnnReZ4E Tree base: 81efdf8c771a ("bonding: Update for extended arp_ip_target format.") Now at: 4be61b847d7b ("bonding: Selftest and documentation for the arp_ip_target parameter.") ====== Checking before the patch ====== ====== Checking the tree with the patch ====== Checking tools/testing/selftests/drivers/net/bonding/bond-arp-ip-target.sh - 2c6d27dcd48424f50f61ab30b11bb5b51b23236447bf6514f63e18e2e37dfb62 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 ...