aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSidhartha Kumar <sidhartha.kumar@oracle.com>2022-04-21 16:35:55 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2022-04-21 20:01:10 -0700
commite5508fc52c76fe42d8bb091fbd7796eeb64b52c4 (patch)
tree058e6acf315b93d91c9d03bc94217034e51cf2e5
parent18d609daa546c919fd36b62a7b510c18de4b4af8 (diff)
downloadlinux-e5508fc52c76fe42d8bb091fbd7796eeb64b52c4.tar.gz
selftest/vm: support xfail in mremap_test
Use ksft_test_result_xfail for the tests which are expected to fail. Link: https://lkml.kernel.org/r/20220420215721.4868-3-sidhartha.kumar@oracle.com Signed-off-by: Sidhartha Kumar <sidhartha.kumar@oracle.com> Reviewed-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--tools/testing/selftests/vm/mremap_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/vm/mremap_test.c b/tools/testing/selftests/vm/mremap_test.c
index 58775dab3cc6c5..db0270127aeb04 100644
--- a/tools/testing/selftests/vm/mremap_test.c
+++ b/tools/testing/selftests/vm/mremap_test.c
@@ -268,7 +268,7 @@ static void run_mremap_test_case(struct test test_case, int *failures,
if (remap_time < 0) {
if (test_case.expect_failure)
- ksft_test_result_pass("%s\n\tExpected mremap failure\n",
+ ksft_test_result_xfail("%s\n\tExpected mremap failure\n",
test_case.name);
else {
ksft_test_result_fail("%s\n", test_case.name);