/* Check that TRT happens for an uncaught non-abort signal, single thread. #xerror: #output: Unimplemented signal: 7\n #output: program stopped with signal 4 (*).\n */ #include #include #include #include #include int main (void) { kill (getpid (), SIGBUS); printf ("xyzzy\n"); exit (0); }