Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: lib: Add wrapper script for test_scanf

Adds a wrapper shell script for the test_scanf module.

Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>
Link: https://lore.kernel.org/r/20210514161206.30821-4-rf@opensource.cirrus.com

authored by

Richard Fitzgerald and committed by
Petr Mladek
ef04d4ff 50f530e1

+6 -1
+1 -1
tools/testing/selftests/lib/Makefile
··· 4 4 # No binaries, but make sure arg-less "make" doesn't trigger "run_tests" 5 5 all: 6 6 7 - TEST_PROGS := printf.sh bitmap.sh prime_numbers.sh strscpy.sh 7 + TEST_PROGS := printf.sh bitmap.sh prime_numbers.sh scanf.sh strscpy.sh 8 8 9 9 include ../lib.mk
+1
tools/testing/selftests/lib/config
··· 1 1 CONFIG_TEST_PRINTF=m 2 + CONFIG_TEST_SCANF=m 2 3 CONFIG_TEST_BITMAP=m 3 4 CONFIG_PRIME_NUMBERS=m 4 5 CONFIG_TEST_STRSCPY=m
+4
tools/testing/selftests/lib/scanf.sh
··· 1 + #!/bin/sh 2 + # SPDX-License-Identifier: GPL-2.0 3 + # Tests the scanf infrastructure using test_scanf kernel module. 4 + $(dirname $0)/../kselftest/module.sh "scanf" test_scanf