ShellCheck - shell script analysis tool version: 0.11.0 license: GNU General Public License, version 3 website: https://www.shellcheck.net Redirect to /tmp/tmp.2nHlNsfLH0 and /tmp/tmp.x5fKlUq2h2 Tree base: a1757eddd673 ("selftests: rds: Refactor test.py") Now at: dfbd39005855 ("selftests: rds: Add rds_stress.py") ====== Checking before the patch ====== Checking tools/testing/selftests/net/rds/run.sh - 694526102b267d7588a65f11c0c71e206e1ab4d854c825292ab540f080b1f696 In run.sh line 18: source "$build_include" ^--------------^ SC1090 (warning): ShellCheck can't follow non-constant source. Use a directive to specify location. In run.sh line 19: build_dir="$mk_build_dir" ^-----------^ SC2154 (warning): mk_build_dir is referenced but not assigned. For more information: https://www.shellcheck.net/wiki/SC1090 -- ShellCheck can't follow non-const... https://www.shellcheck.net/wiki/SC2154 -- mk_build_dir is referenced but no... ====== Checking the tree with the patch ====== Checking tools/testing/selftests/net/rds/run.sh - 694526102b267d7588a65f11c0c71e206e1ab4d854c825292ab540f080b1f696 In run.sh line 18: source "$build_include" ^--------------^ SC1090 (warning): ShellCheck can't follow non-constant source. Use a directive to specify location. In run.sh line 19: build_dir="$mk_build_dir" ^-----------^ SC2154 (warning): mk_build_dir is referenced but not assigned. In run.sh line 232: -l "$PLOSS" -c "$PCORRUPT" -u "$PDUP" $FLAGS ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: -l "$PLOSS" -c "$PCORRUPT" -u "$PDUP" "$FLAGS" For more information: https://www.shellcheck.net/wiki/SC1090 -- ShellCheck can't follow non-const... https://www.shellcheck.net/wiki/SC2154 -- mk_build_dir is referenced but no... https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...