selftests/harness: fix spelling mistake "SIGARLM" -> "SIGALRM"

There a few identical spelling mistakes, fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
This commit is contained in:
Colin Ian King 2020-03-27 09:06:48 +00:00 committed by Shuah Khan
parent ffa773e101
commit d925c89695
1 changed files with 3 additions and 3 deletions

View File

@ -705,7 +705,7 @@ static void __timeout_handler(int sig, siginfo_t *info, void *ucontext)
/* Sanity check handler execution environment. */ /* Sanity check handler execution environment. */
if (!t) { if (!t) {
fprintf(TH_LOG_STREAM, fprintf(TH_LOG_STREAM,
"no active test in SIGARLM handler!?\n"); "no active test in SIGALRM handler!?\n");
abort(); abort();
} }
if (sig != SIGALRM || sig != info->si_signo) { if (sig != SIGALRM || sig != info->si_signo) {
@ -731,7 +731,7 @@ void __wait_for_test(struct __test_metadata *t)
if (sigaction(SIGALRM, &action, &saved_action)) { if (sigaction(SIGALRM, &action, &saved_action)) {
t->passed = 0; t->passed = 0;
fprintf(TH_LOG_STREAM, fprintf(TH_LOG_STREAM,
"%s: unable to install SIGARLM handler\n", "%s: unable to install SIGALRM handler\n",
t->name); t->name);
return; return;
} }
@ -743,7 +743,7 @@ void __wait_for_test(struct __test_metadata *t)
if (sigaction(SIGALRM, &saved_action, NULL)) { if (sigaction(SIGALRM, &saved_action, NULL)) {
t->passed = 0; t->passed = 0;
fprintf(TH_LOG_STREAM, fprintf(TH_LOG_STREAM,
"%s: unable to uninstall SIGARLM handler\n", "%s: unable to uninstall SIGALRM handler\n",
t->name); t->name);
return; return;
} }