mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 10:01:41 +00:00
7a309195d1
Add a test suite for the mincore() syscall. It tests most of its use cases as well as its interface. Tests implemented: - basic interface test - behavior on anonymous mappings - behavior on anonymous mappings with huge tlb pages - file-backed mapping with a regular file - file-backed mapping with a tmpfs file Signed-off-by: Ricardo Cañuelo <ricardo.canuelo@collabora.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Link: http://lkml.kernel.org/r/20200728100450.4065-1-ricardo.canuelo@collabora.com Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
7 lines
107 B
Makefile
7 lines
107 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
CFLAGS += -Wall
|
|
|
|
TEST_GEN_PROGS := mincore_selftest
|
|
include ../lib.mk
|