Commit 5b0b77ac authored by Paolo Bonzini's avatar Paolo Bonzini Committed by Shuah Khan

selftests: sigaltstack: do not use ksft_exit_skip after ksft_set_plan

Calling ksft_exit_skip after ksft_set_plan results in executing fewer tests
than planned.  Use ksft_test_result_skip when possible, or just bail out if
memory corruption is detected.
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent f000a39c
...@@ -71,7 +71,7 @@ void my_usr1(int sig, siginfo_t *si, void *u) ...@@ -71,7 +71,7 @@ void my_usr1(int sig, siginfo_t *si, void *u)
swapcontext(&sc, &uc); swapcontext(&sc, &uc);
ksft_print_msg("%s\n", p->msg); ksft_print_msg("%s\n", p->msg);
if (!p->flag) { if (!p->flag) {
ksft_exit_skip("[RUN]\tAborting\n"); ksft_exit_fail_msg("[RUN]\tAborting\n");
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
} }
...@@ -144,7 +144,7 @@ int main(void) ...@@ -144,7 +144,7 @@ int main(void)
err = sigaltstack(&stk, NULL); err = sigaltstack(&stk, NULL);
if (err) { if (err) {
if (errno == EINVAL) { if (errno == EINVAL) {
ksft_exit_skip( ksft_test_result_skip(
"[NOTE]\tThe running kernel doesn't support SS_AUTODISARM\n"); "[NOTE]\tThe running kernel doesn't support SS_AUTODISARM\n");
/* /*
* If test cases for the !SS_AUTODISARM variant were * If test cases for the !SS_AUTODISARM variant were
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment