[LTP] [PATCH] lsmod01.sh: Fix failure when CONFIG_MODULE_UNLOAD is not set
Radoslav Kolev
radoslav.kolev@suse.com
Mon Dec 21 12:51:11 CET 2020
If CONFIG_MODULE_UNLOAD is not set lsmod shows '-2' (-ENOENT) for
the used by column, but /proc/modules has only '-' there.
Signed-off-by: Radoslav Kolev <radoslav.kolev@suse.com>
---
testcases/commands/lsmod/lsmod01.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/testcases/commands/lsmod/lsmod01.sh b/testcases/commands/lsmod/lsmod01.sh
index c373b2893..2e044c718 100755
--- a/testcases/commands/lsmod/lsmod01.sh
+++ b/testcases/commands/lsmod/lsmod01.sh
@@ -44,7 +44,9 @@ cleanup()
lsmod_matches_proc_modules()
{
- lsmod_output=$(lsmod | awk '!/Module/{print $1, $2, $3}' | sort)
+ lsmod_output=$(lsmod \
+ | awk '!/Module/{print $1, $2, ($3==-2) ? "-" : $3}' \
+ | sort)
if [ -z "$lsmod_output" ]; then
tst_brk TBROK "Failed to parse the output from lsmod"
fi
--
2.26.2
More information about the ltp
mailing list