diff options
author | Christian Brauner <christian.brauner@ubuntu.com> | 2019-05-20 16:13:28 +0200 |
---|---|---|
committer | Christian Brauner <christian.brauner@ubuntu.com> | 2020-06-17 00:07:38 +0200 |
commit | 2c5db60e46ad7f03789fe7e2beedb15496930468 (patch) | |
tree | 4a4beed4d50fa635c5756d6a13e33a31d927f38f /tools/testing/selftests/core/Makefile | |
parent | arch: wire-up close_range() (diff) | |
download | linux-2c5db60e46ad7f03789fe7e2beedb15496930468.tar.xz linux-2c5db60e46ad7f03789fe7e2beedb15496930468.zip |
tests: add close_range() tests
This adds basic tests for the new close_range() syscall.
- test that no invalid flags can be passed
- test that a range of file descriptors is correctly closed
- test that a range of file descriptors is correctly closed if there there
are already closed file descriptors in the range
- test that max_fd is correctly capped to the current fdtable maximum
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Jann Horn <jannh@google.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Dmitry V. Levin <ldv@altlinux.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Florian Weimer <fweimer@redhat.com>
Cc: Shuah Khan <shuah@kernel.org>
Cc: linux-api@vger.kernel.org
Cc: linux-kselftest@vger.kernel.org
Diffstat (limited to 'tools/testing/selftests/core/Makefile')
-rw-r--r-- | tools/testing/selftests/core/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/testing/selftests/core/Makefile b/tools/testing/selftests/core/Makefile new file mode 100644 index 000000000000..f6f2d6f473c6 --- /dev/null +++ b/tools/testing/selftests/core/Makefile @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0-only +CFLAGS += -g -I../../../../usr/include/ + +TEST_GEN_PROGS := close_range_test + +include ../lib.mk + |