========== shellcheck - FAILED ====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/drivers/net/bonding/bond_stacked_header_parse.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.J259DDwdqB 2026-03-16 23:33:41.812503509 -0400 +++ /tmp/tmp.FMVGirdmHz 2026-03-16 23:33:42.542497626 -0400 @@ -0,0 +1,18 @@ + +In bond_stacked_header_parse.sh line 12: +ALL_TESTS=" +^-------^ SC2034 (warning): ALL_TESTS appears unused. Verify use (or export if used externally). + + +In bond_stacked_header_parse.sh line 20: +bond_test_stacked_header_parse() +^-- SC2329 (info): This function is never invoked. Check usage (or ignored if invoked indirectly). + + +In bond_stacked_header_parse.sh line 27: + RET=0 + ^-^ SC2034 (warning): RET appears unused. Verify use (or export if used externally). + +For more information: + https://www.shellcheck.net/wiki/SC2034 -- ALL_TESTS appears unused. Verify ... + https://www.shellcheck.net/wiki/SC2329 -- This function is never invoked. C...