diff options
| author | Richard Fitzgerald <[email protected]> | 2021-05-14 17:12:06 +0100 |
|---|---|---|
| committer | Petr Mladek <[email protected]> | 2021-05-19 15:05:11 +0200 |
| commit | ef04d4ff4b19628c78abddc768acce097d35d086 (patch) | |
| tree | bf2a87f120da313d6c210c2df059cf8012963e64 | |
| parent | 50f530e176eac808e64416732e54c0686ce2c39b (diff) | |
selftests: lib: Add wrapper script for test_scanf
Adds a wrapper shell script for the test_scanf module.
Signed-off-by: Richard Fitzgerald <[email protected]>
Reviewed-by: Petr Mladek <[email protected]>
Acked-by: Andy Shevchenko <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
| -rw-r--r-- | tools/testing/selftests/lib/Makefile | 2 | ||||
| -rw-r--r-- | tools/testing/selftests/lib/config | 1 | ||||
| -rwxr-xr-x | tools/testing/selftests/lib/scanf.sh | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/tools/testing/selftests/lib/Makefile b/tools/testing/selftests/lib/Makefile index a105f094676e..ee71fc99d5b5 100644 --- a/tools/testing/selftests/lib/Makefile +++ b/tools/testing/selftests/lib/Makefile @@ -4,6 +4,6 @@ # No binaries, but make sure arg-less "make" doesn't trigger "run_tests" all: -TEST_PROGS := printf.sh bitmap.sh prime_numbers.sh strscpy.sh +TEST_PROGS := printf.sh bitmap.sh prime_numbers.sh scanf.sh strscpy.sh include ../lib.mk diff --git a/tools/testing/selftests/lib/config b/tools/testing/selftests/lib/config index b80ee3f6e265..645839b50b0a 100644 --- a/tools/testing/selftests/lib/config +++ b/tools/testing/selftests/lib/config @@ -1,4 +1,5 @@ CONFIG_TEST_PRINTF=m +CONFIG_TEST_SCANF=m CONFIG_TEST_BITMAP=m CONFIG_PRIME_NUMBERS=m CONFIG_TEST_STRSCPY=m diff --git a/tools/testing/selftests/lib/scanf.sh b/tools/testing/selftests/lib/scanf.sh new file mode 100755 index 000000000000..b59b8ba561c3 --- /dev/null +++ b/tools/testing/selftests/lib/scanf.sh @@ -0,0 +1,4 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0 +# Tests the scanf infrastructure using test_scanf kernel module. +$(dirname $0)/../kselftest/module.sh "scanf" test_scanf |