diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/tst-bz21269.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2018-03-29 Florian Weimer <fweimer@redhat.com> + + * sysdeps/unix/sysv/linux/i386/tst-bz21269.c (do_test): Also + capture SIGBUS. + 2018-03-27 Adhemerval Zanella <adhemerval.zanella@linaro.org> * sysdeps/unix/sysv/linux/arch-fork.h [__ASSUME_CLONE_BACKWARDS] diff --git a/sysdeps/unix/sysv/linux/i386/tst-bz21269.c b/sysdeps/unix/sysv/linux/i386/tst-bz21269.c index 353e36507d..6ee3fc62be 100644 --- a/sysdeps/unix/sysv/linux/i386/tst-bz21269.c +++ b/sysdeps/unix/sysv/linux/i386/tst-bz21269.c @@ -177,6 +177,8 @@ do_test (void) xsethandler (SIGSEGV, sigsegv_handler, 0); /* 32-bit kernels send SIGILL instead of SIGSEGV on IRET faults. */ xsethandler (SIGILL, sigsegv_handler, 0); + /* Some kernels send SIGBUS instead. */ + xsethandler (SIGBUS, sigsegv_handler, 0); thread = xpthread_create (0, threadproc, 0); |