/* * Copyright (c) 2005, Bull S.A.. All rights reserved. * Created by: Sebastien Decugis * Copyright (c) 2013 Cyril Hrubis * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. * * This program is distributed in the hope that it would be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the GNU General Public License along * with this program; if not, write the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This sample test aims to check the following assertions: * * If SA_SIGINFO is not set in sa_flags, sa_handler is used as the signal * handling function. * * The steps are: * -> register a handler for SIGTRAP without SA_SIGINFO, and a known function * as sa_handler * -> raise SIGTRAP, and check the function has been called. * * The test fails if the function is not called */ /* We are testing conformance to IEEE Std 1003.1, 2003 Edition */ #define _POSIX_C_SOURCE 200112L #include #include #include #include #include #include #include #include #include "posixtest.h" static volatile sig_atomic_t called = 0; static void handler() { called = 1; } int main(void) { int ret; struct sigaction sa; /* Set the signal handler */ sa.sa_flags = 0; sa.sa_handler = handler; ret = sigemptyset(&sa.sa_mask); if (ret != 0) { perror("Failed to empty signal set"); return PTS_UNRESOLVED; } /* Install the signal handler for SIGTRAP */ ret = sigaction(SIGTRAP, &sa, 0); if (ret != 0) { perror("Failed to set signal handler"); return PTS_UNRESOLVED; } if (called) { fprintf(stderr, "The signal handler has been called before signal was raised"); return PTS_FAIL; } ret = raise(SIGTRAP); if (ret != 0) { perror("Failed to raise SIGTRAP"); return PTS_UNRESOLVED; } if (!called) { fprintf(stderr, "The sa_handler was not called\n"); return PTS_FAIL; } printf("Test PASSED\n"); return PTS_PASS; }