========== shellcheck - FAILED ====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/bpf/benchs/run_bench_xdp_lb.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.Yh8niaTAwu 2026-04-27 20:43:05.467597127 -0400 +++ /tmp/tmp.3lnZ2d0avu 2026-04-27 20:43:05.613596112 -0400 @@ -0,0 +1,23 @@ + +In run_bench_xdp_lb.sh line 4: +source ./benchs/run_common.sh + ^--------------------^ SC1091 (info): Not following: ./benchs/run_common.sh: openBinaryFile: does not exist (No such file or directory) + + +In run_bench_xdp_lb.sh line 19: + printf "$HDR" "$1" "p50" "stddev" "p99" + ^----^ SC2059 (info): Don't use variables in the printf format string. Use printf '..%s..' "$foo". + + +In run_bench_xdp_lb.sh line 38: + printf "$ROW" "$sc" "ERR" "-" "-" + ^----^ SC2059 (info): Don't use variables in the printf format string. Use printf '..%s..' "$foo". + + +In run_bench_xdp_lb.sh line 42: + printf "$ROW" "$sc" \ + ^----^ SC2059 (info): Don't use variables in the printf format string. Use printf '..%s..' "$foo". + +For more information: + https://www.shellcheck.net/wiki/SC1091 -- Not following: ./benchs/run_commo... + https://www.shellcheck.net/wiki/SC2059 -- Don't use variables in the printf...