diff --git a/testcode/lib/files.txt b/testcode/lib/files.txt index f89751b33..232fbb2ad 100644 --- a/testcode/lib/files.txt +++ b/testcode/lib/files.txt @@ -14,4 +14,5 @@ getsp.s - helper routine for ft.c joy-test.c - joystick driver test program posixio-test.c - test POSIX file i/o routines (open/read/write/close) seek.c - test lseek()/fseek()/ftell() +signal-test.c - small test program for signal/raise time-test.c - test the time/mktime/gmtime/asctime functions diff --git a/testcode/lib/signal-test.c b/testcode/lib/signal-test.c new file mode 100644 index 000000000..4e34a281d --- /dev/null +++ b/testcode/lib/signal-test.c @@ -0,0 +1,29 @@ +#include +#include +#include +#include + + +void __fastcall__ sighandler (int sig) +{ + printf ("Got signal #%d\n", sig); +} + + + +int main (void) +{ + if (signal (SIGSEGV, sighandler) == SIG_ERR) { + printf ("signal failure %d: %s\n", errno, strerror (errno)); + return 1; + } + printf ("About to raise SIGSEGV...\n"); + raise (SIGSEGV); + printf ("Back from signal handler\n"); + printf ("About to raise SIGILL...\n"); + raise (SIGILL); + printf ("Back from signal handler\n"); + return 0; +} + +