====== Checking before the patch ====== ====== Checking the tree with the patch ====== tools/testing/selftests/drivers/net/netdevsim/peer-rx-truesize.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.fLd6EeTqu8 2026-03-14 18:18:01.830766960 -0400 +++ /tmp/tmp.GIiV351YHr 2026-03-14 18:18:02.020765625 -0400 @@ -0,0 +1,24 @@ + +In peer-rx-truesize.sh line 7: +source "$lib_dir"/lib.sh + ^---------------^ SC1091 (info): Not following: ./lib.sh: openBinaryFile: does not exist (No such file or directory) + + +In peer-rx-truesize.sh line 79: + exit "${ksft_skip}" + ^----------^ SC2154 (warning): ksft_skip is referenced but not assigned. + + +In peer-rx-truesize.sh line 132: + for i in $(seq 100); do + ^-^ SC2034 (warning): i appears unused. Verify use (or export if used externally). + + +In peer-rx-truesize.sh line 298: + exit "${ksft_fail}" + ^----------^ SC2154 (warning): ksft_fail is referenced but not assigned. + +For more information: + https://www.shellcheck.net/wiki/SC2034 -- i appears unused. Verify use (or ... + https://www.shellcheck.net/wiki/SC2154 -- ksft_fail is referenced but not a... + https://www.shellcheck.net/wiki/SC1091 -- Not following: ./lib.sh: openBina...