public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 00/14] Fixes for GDB Testsuites
@ 2020-02-07 15:01 Shahab Vahedi
  2020-02-07 15:01 ` [PATCH 06/14] gdb/testsuite: Fix gdb.mi exit function Shahab Vahedi
                   ` (13 more replies)
  0 siblings, 14 replies; 31+ messages in thread
From: Shahab Vahedi @ 2020-02-07 15:01 UTC (permalink / raw)
  To: gdb-patches; +Cc: Shahab Vahedi, Shahab Vahedi, Francois Bedard

From: Shahab Vahedi <shahab@synopsys.com>

This is a set of patches mostly for adapting the tests as such to handle
the executions through a gdb server better.  We have  encountered  these
issues while running the tests for ARC, but I believe other targets  can
benefit from them.

I have  run  "make  check-gdb"  for  x86_64  target  and  there  was  no
regression.

Anton Kolesov (14):
  gdb/testsuite: Fix an invalid is_remote check in fileio test
  gdb/testsuite: Skip fileio.exp for remote targets
  gdb/testsuite: Add exit_is_reliable proc
  gdb/testsuite: Avoid fake failures when exit is unreliable
  gdb/testsuite: Skip a few gdb.base/skip.exp tests for remote targets
  gdb/testsuite: Fix gdb.mi exit function
  gdb/testsuite: Fix invalid watchpoint test in mi suite
  gdb/testsuite: Fix bug in break-unload-file
  gdb/testsuite: Fix break-always.exp for enabled do_reload_on_run
  gdb/testsuite: Fix gdb.base/chng-syms.exp for remote target
  gdb/testsuite: Fix dbx.exp for remote targets
  gdb/testsuite: Skip on of the interp.exp test for remote targets
  gdb/testsuite: Skip killed-outside when nosignals
  gdb/testsuite: Skip some compile.exp tests when running with gdb-comm board

 gdb/testsuite/config/monitor.exp             |  8 +++++++
 gdb/testsuite/gdb.base/break-always.exp      | 10 ++++++--
 gdb/testsuite/gdb.base/break-unload-file.exp |  2 +-
 gdb/testsuite/gdb.base/callexit.exp          |  7 ++++++
 gdb/testsuite/gdb.base/commands.exp          | 14 +++++++++++
 gdb/testsuite/gdb.base/dbx.exp               |  6 +++++
 gdb/testsuite/gdb.base/ena-dis-br.exp        | 18 ++++++++------
 gdb/testsuite/gdb.base/fileio.exp            |  5 +++-
 gdb/testsuite/gdb.base/hook-stop.exp         | 12 +++++++++-
 gdb/testsuite/gdb.base/interp.exp            | 20 +++++++++-------
 gdb/testsuite/gdb.base/killed-outside.exp    |  5 ++++
 gdb/testsuite/gdb.base/nextoverexit.exp      |  7 ++++++
 gdb/testsuite/gdb.base/skip.exp              | 12 ++++++----
 gdb/testsuite/gdb.compile/compile.exp        | 25 +++++++++++---------
 gdb/testsuite/gdb.mi/basics.c                |  2 +-
 gdb/testsuite/gdb.mi/mi-break.exp            | 10 ++++++++
 gdb/testsuite/gdb.mi/mi-cli.exp              | 15 +++++++-----
 gdb/testsuite/gdb.mi/mi-exit-code.exp        |  5 ++++
 gdb/testsuite/gdb.mi/mi-simplerun.exp        |  5 ++++
 gdb/testsuite/gdb.mi/mi-watch.exp            |  5 ++++
 gdb/testsuite/lib/gdb.exp                    | 18 ++++++++------
 gdb/testsuite/lib/mi-support.exp             |  7 ++++++
 22 files changed, 169 insertions(+), 49 deletions(-)

-- 
2.25.0

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

end of thread, other threads:[~2020-02-26 20:52 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-07 15:01 [PATCH 00/14] Fixes for GDB Testsuites Shahab Vahedi
2020-02-07 15:01 ` [PATCH 06/14] gdb/testsuite: Fix gdb.mi exit function Shahab Vahedi
2020-02-07 15:01 ` [PATCH 09/14] gdb/testsuite: Fix break-always.exp for enabled do_reload_on_run Shahab Vahedi
2020-02-07 15:01 ` [PATCH 04/14] gdb/testsuite: Avoid fake failures when exit is unreliable Shahab Vahedi
2020-02-11  8:10   ` Luis Machado
2020-02-18 15:41     ` Shahab Vahedi
2020-02-25  7:47       ` Anton Kolesov
2020-02-26 20:42   ` Andrew Burgess
2020-02-07 15:01 ` [PATCH 01/14] gdb/testsuite: Fix an invalid is_remote check in fileio test Shahab Vahedi
2020-02-11  7:29   ` Luis Machado
2020-02-18  7:31     ` Shahab Vahedi
2020-02-26 19:38   ` Andrew Burgess
2020-02-07 15:01 ` [PATCH 13/14] gdb/testsuite: Skip killed-outside when nosignals Shahab Vahedi
2020-02-07 15:01 ` [PATCH 08/14] gdb/testsuite: Fix bug in break-unload-file Shahab Vahedi
2020-02-07 15:01 ` [PATCH 12/14] gdb/testsuite: Skip on of the interp.exp test for remote targets Shahab Vahedi
2020-02-07 15:01 ` [PATCH 10/14] gdb/testsuite: Fix gdb.base/chng-syms.exp for remote target Shahab Vahedi
2020-02-07 15:01 ` [PATCH 14/14] gdb/testsuite: Skip some compile.exp tests when running with gdb-comm board Shahab Vahedi
2020-02-07 15:01 ` [PATCH 03/14] gdb/testsuite: Add exit_is_reliable proc Shahab Vahedi
2020-02-11  7:35   ` Luis Machado
2020-02-26 19:45   ` Andrew Burgess
2020-02-07 15:01 ` [PATCH 11/14] gdb/testsuite: Fix dbx.exp for remote targets Shahab Vahedi
2020-02-11  8:27   ` Luis Machado
2020-02-07 15:01 ` [PATCH 02/14] gdb/testsuite: Skip fileio.exp " Shahab Vahedi
2020-02-11  7:32   ` Luis Machado
2020-02-26 19:40   ` Andrew Burgess
2020-02-07 15:01 ` [PATCH 07/14] gdb/testsuite: Fix invalid watchpoint test in mi suite Shahab Vahedi
2020-02-07 15:01 ` [PATCH 05/14] gdb/testsuite: Skip a few gdb.base/skip.exp tests for remote targets Shahab Vahedi
2020-02-11  8:20   ` Luis Machado
2020-02-18 15:45     ` Shahab Vahedi
2020-02-25  8:39       ` Anton Kolesov
2020-02-26 20:52         ` Andrew Burgess

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).