Test "sigaction: support for SA_RESETHAND on x86_64" on arm64
Change-Id: I6154134d53d1ee0344e4bc344f302ffaf810c618 Refs: #1031
This commit is contained in:
committed by
Masamichi Takagi
parent
739472bd86
commit
9e57db5427
37
test/mng_mod/issues/1031/arm64/CT_010.c
Normal file
37
test/mng_mod/issues/1031/arm64/CT_010.c
Normal file
@ -0,0 +1,37 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
#include "./test_chk.h"
|
||||
|
||||
#define TEST_NAME "CT_010"
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
int rc = 0;
|
||||
int status;
|
||||
|
||||
printf("*** %s start *******************************\n", TEST_NAME);
|
||||
|
||||
rc = sigaction(SIGUSR1, NULL, NULL);
|
||||
OKNG(rc != 0, "SIGUSR1 is valid");
|
||||
|
||||
rc = sigaction(SIGKILL, NULL, NULL);
|
||||
OKNG(rc != 0, "SIGKILL is valid");
|
||||
|
||||
rc = sigaction(SIGSTOP, NULL, NULL);
|
||||
OKNG(rc != 0, "SIGSTOP is valid");
|
||||
|
||||
rc = sigaction(_NSIG, NULL, NULL);
|
||||
OKNG(rc != -1, "_NSIG is invalid");
|
||||
|
||||
printf("*** %s PASSED\n\n", TEST_NAME);
|
||||
|
||||
return 0;
|
||||
|
||||
fn_fail:
|
||||
printf("*** %s FAILED\n\n", TEST_NAME);
|
||||
|
||||
return -1;
|
||||
}
|
||||
Reference in New Issue
Block a user