diff options
author | Kees Cook <keescook@chromium.org> | 2015-11-07 03:30:32 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-07 04:50:42 +0300 |
commit | 317dc34ab786d4f22bf7ed8ab546b9ae57f900d0 (patch) | |
tree | 14cbd98eca044d608c23f21d3947fc65e1202044 /tools/testing/selftests/lib/Makefile | |
parent | 707cc7280f452a162c52bc240eae62568b9753c2 (diff) | |
download | linux-317dc34ab786d4f22bf7ed8ab546b9ae57f900d0.tar.xz |
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>
Diffstat (limited to 'tools/testing/selftests/lib/Makefile')
-rw-r--r-- | tools/testing/selftests/lib/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/testing/selftests/lib/Makefile b/tools/testing/selftests/lib/Makefile new file mode 100644 index 000000000000..47147b968514 --- /dev/null +++ b/tools/testing/selftests/lib/Makefile @@ -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 |