[PATCH 2/2] selftests: kvm: replace exit() with ksft_exit_fail_msg()

From: Muhammad Usama Anjum
Date: Wed Jun 12 2024 - 06:45:43 EST


The KSFT_FAIL, exit code must be used instead of exit(254). The 254 code
here seems like anciant relic. Its even better if we use
ksft_exit_fail_msg() which will print out "Bail out" meaning the test
exited without completing. This string is TAP protocol specific.

Signed-off-by: Muhammad Usama Anjum <usama.anjum@xxxxxxxxxxxxx>
---
tools/testing/selftests/kvm/lib/assert.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/assert.c b/tools/testing/selftests/kvm/lib/assert.c
index 33651f5b3a7fd..db648a7ac429b 100644
--- a/tools/testing/selftests/kvm/lib/assert.c
+++ b/tools/testing/selftests/kvm/lib/assert.c
@@ -87,7 +87,7 @@ test_assert(bool exp, const char *exp_str,

if (errno == EACCES)
ksft_exit_skip("Access denied - Exiting\n");
- exit(254);
+ ksft_exit_fail_msg("\n");
}

return;
--
2.39.2