========== shellcheck - FAILED ====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/net/bench/test_bench_page_pool.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.KWJYqqgIJ7 2025-06-13 17:18:43.565388654 -0700 +++ /tmp/tmp.9upyOsizL0 2025-06-13 17:18:44.263384060 -0700 @@ -0,0 +1,26 @@ + +In test_bench_page_pool.sh line 19: + echo ${result} | grep -o -E "no-softirq-page_pool01 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" + ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + echo "${result}" | grep -o -E "no-softirq-page_pool01 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" + + +In test_bench_page_pool.sh line 23: + echo ${result} | grep -o -E "no-softirq-page_pool02 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" + ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + echo "${result}" | grep -o -E "no-softirq-page_pool02 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" + + +In test_bench_page_pool.sh line 27: + echo ${result} | grep -o -E "no-softirq-page_pool03 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" + ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + echo "${result}" | grep -o -E "no-softirq-page_pool03 Per elem: ([0-9]+) cycles\(tsc\) ([0-9]+\.[0-9]+) ns" + +For more information: + https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...