selftests: run lib/test_printf module
This runs the lib/test_printf module to make sure printf is operating sanely. Signed-off-by: Kees Cook <keescook@chromium.org> Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk> Cc: Shuah Khan <shuahkh@osg.samsung.com> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
707cc7280f
commit
317dc34ab7
@ -6,6 +6,7 @@ TARGETS += firmware
|
|||||||
TARGETS += ftrace
|
TARGETS += ftrace
|
||||||
TARGETS += futex
|
TARGETS += futex
|
||||||
TARGETS += kcmp
|
TARGETS += kcmp
|
||||||
|
TARGETS += lib
|
||||||
TARGETS += membarrier
|
TARGETS += membarrier
|
||||||
TARGETS += memfd
|
TARGETS += memfd
|
||||||
TARGETS += memory-hotplug
|
TARGETS += memory-hotplug
|
||||||
|
8
tools/testing/selftests/lib/Makefile
Normal file
8
tools/testing/selftests/lib/Makefile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Makefile for lib/ function selftests
|
||||||
|
|
||||||
|
# No binaries, but make sure arg-less "make" doesn't trigger "run_tests"
|
||||||
|
all:
|
||||||
|
|
||||||
|
TEST_PROGS := printf.sh
|
||||||
|
|
||||||
|
include ../lib.mk
|
10
tools/testing/selftests/lib/printf.sh
Normal file
10
tools/testing/selftests/lib/printf.sh
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Runs printf infrastructure using test_printf kernel module
|
||||||
|
|
||||||
|
if /sbin/modprobe -q test_printf; then
|
||||||
|
/sbin/modprobe -q -r test_printf
|
||||||
|
echo "printf: ok"
|
||||||
|
else
|
||||||
|
echo "printf: [FAIL]"
|
||||||
|
exit 1
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user