public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [Patch] Avoid deadlock in guality tests.
@ 2016-04-06 14:54 Yvan Roux
  2016-04-06 15:01 ` Jakub Jelinek
  2016-04-06 15:09 ` Pedro Alves
  0 siblings, 2 replies; 8+ messages in thread
From: Yvan Roux @ 2016-04-06 14:54 UTC (permalink / raw)
  To: gcc-patches; +Cc: Pedro Alves

[-- Attachment #1: Type: text/plain, Size: 1256 bytes --]

Hi,

we are confronted to a deadlock situation when doing native validation
on armv8l target.

When gcc/testsuite/gcc.dg/guality/example.c is executed it spawns gdb,
and makes it attach to his parent, but during the test execution, gdb
receives a SIGSEGV, which is handled as a stop signal.  Then the test
timeouts and dejagnu tries to terminate it, but doesn't manage to do
it, this was raised and discussed on dejagnu list.

https://lists.gnu.org/archive/html/dejagnu/2016-03/msg00048.html

Dejagnu cleanup mechanism needs to be enhanced, but I think that it
would also be better if guality tests don't get stuck and/or can be
killed easily.  This patch changes GDB signals handling to nostop for
SIGSEGV, SIGINT, SIGTERM and SIGBUS.  I am not sure if we need to
increase the list of signals to all the stop ones (which are not used
by GDB) or to restrict it just to SIGSEGV.

Tested without regression on native x86_64, i386, aarch64 targets and
unleash native armv8l one.  Is it OK for trunk ? (I don't know the
rules for that kind of testsuite fix during stage 4).

Cheers,
Yvan

2016-04-06  Yvan Roux  <yvan.roux@linaro.org>
            Pedro Alves  <palves@redhat.com>

        * gcc.dg/guality/guality.h (main): Avoid GDB being blocked on signals.

[-- Attachment #2: guality-fix.diff --]
[-- Type: text/plain, Size: 523 bytes --]

diff --git a/gcc/testsuite/gcc.dg/guality/guality.h b/gcc/testsuite/gcc.dg/guality/guality.h
index 52fa706..d5867d8 100644
--- a/gcc/testsuite/gcc.dg/guality/guality.h
+++ b/gcc/testsuite/gcc.dg/guality/guality.h
@@ -252,6 +252,10 @@ main (int argc, char *argv[])
       if (!guality_gdb_input
 	  || fprintf (guality_gdb_input, "\
 set height 0\n\
+handle SIGINT pass nostop\n\
+handle SIGTERM pass nostop\n\
+handle SIGSEGV pass nostop\n\
+handle SIGBUS pass nostop\n\
 attach %i\n\
 set guality_attached = 1\n\
 b %i\n\

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-04-07 23:46 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-06 14:54 [Patch] Avoid deadlock in guality tests Yvan Roux
2016-04-06 15:01 ` Jakub Jelinek
2016-04-06 15:09 ` Pedro Alves
2016-04-06 15:13   ` Yvan Roux
2016-04-06 15:24     ` Pedro Alves
2016-04-06 15:29       ` Yvan Roux
2016-04-07 13:41         ` Yvan Roux
2016-04-07 23:46           ` Pedro Alves

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).