[LTP] [PATCH 2/2] tst_check_driver.sh: Add test for x68_64 module
Petr Vorel
pvorel@suse.cz
Tue Mar 15 13:25:16 CET 2022
To cover problem fixed in previous commit.
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
lib/newlib_tests/shell/tst_check_driver.sh | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/lib/newlib_tests/shell/tst_check_driver.sh b/lib/newlib_tests/shell/tst_check_driver.sh
index d188b6f775..98098c07c5 100755
--- a/lib/newlib_tests/shell/tst_check_driver.sh
+++ b/lib/newlib_tests/shell/tst_check_driver.sh
@@ -4,7 +4,7 @@
TST_TESTFUNC=test
TST_SETUP=setup
-TST_CNT=3
+TST_CNT=4
TST_NEEDS_CMDS="tst_check_drivers find grep head sed"
. tst_test.sh
@@ -54,10 +54,18 @@ test3()
tst_res TINFO "check built-in module detection"
- [ -f "$f" ] || \
- tst_brk TCONF "missing '$f'"
-
+ [ -f "$f" ] || tst_brk TCONF "missing '$f'"
test_drivers $(grep -E '_[^/]+\.ko' $f | head -3)
}
+test4()
+{
+ local f="$MODULES_DIR/modules.builtin"
+
+ tst_res TINFO "check for x68_64 arch module detection"
+
+ [ -f "$f" ] || tst_brk TCONF "missing '$f'"
+ test_drivers $(grep -E '[^/]+[-_]x86[-_]64.*\.ko' $f | head -3)
+}
+
tst_run
--
2.35.1
More information about the ltp
mailing list