diff options
author | Kees Cook <keescook@chromium.org> | 2022-03-25 02:14:18 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-03-25 03:06:51 +0100 |
commit | 25fd2d41b505d0640bdfe67aa77c549de2d3c18a (patch) | |
tree | ad95618faec3f5e14cd5e4ff5805d4a1fbf3abe2 /tools/testing/selftests/vm/memfd_secret.c | |
parent | mm: madvise: MADV_DONTNEED_LOCKED (diff) | |
download | linux-25fd2d41b505d0640bdfe67aa77c549de2d3c18a.tar.xz linux-25fd2d41b505d0640bdfe67aa77c549de2d3c18a.zip |
selftests: kselftest framework: provide "finished" helper
Instead of having each time that wants to use ksft_exit() have to figure
out the internals of kselftest.h, add the helper ksft_finished() that
makes sure the passes, xfails, and skips are equal to the test plan count.
Link: https://lkml.kernel.org/r/20220201013717.2464392-1-keescook@chromium.org
Signed-off-by: Kees Cook <keescook@chromium.org>
Cc: Shuah Khan <shuah@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to '')
-rw-r--r-- | tools/testing/selftests/vm/memfd_secret.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/vm/memfd_secret.c b/tools/testing/selftests/vm/memfd_secret.c index 93e7e7ffed33..957b9e18c729 100644 --- a/tools/testing/selftests/vm/memfd_secret.c +++ b/tools/testing/selftests/vm/memfd_secret.c @@ -282,7 +282,7 @@ int main(int argc, char *argv[]) close(fd); - ksft_exit(!ksft_get_fail_cnt()); + ksft_finished(); } #else /* __NR_memfd_secret */ |