public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 00/15] Mixed bag of TUI tests and fixes
@ 2023-01-06 10:25 Andrew Burgess
  2023-01-06 10:25 ` [PATCH 01/15] gdb/testsuite: extend gdb.tui/tui-layout.exp test script Andrew Burgess
                   ` (15 more replies)
  0 siblings, 16 replies; 36+ messages in thread
From: Andrew Burgess @ 2023-01-06 10:25 UTC (permalink / raw)
  To: gdb-patches; +Cc: Andrew Burgess

This series started as a passing observation that an existing TUI
tests was no longer working as expected.

Then I noticed a gap in the testing...

... which exposed a bug ...

... and things spiralled from there :/

Thanks,
Andrew

---

Andrew Burgess (15):
  gdb/testsuite: extend gdb.tui/tui-layout.exp test script
  gdb/testsuite: update gdb.tui/tui-disasm-long-lines.exp
  gdb/testsuite: update gdb.tui/tui-nl-filtered-output.exp
  gdb/testsuite/tui: more testing of the 'focus' command
  gdb/tui: convert if/error to an assert
  gdb/tui: better filtering of tab completion results for focus command
  gdb/testsuite: fix line feed scrolling in tuiterm.exp
  gdb/tui: improve errors from tui focus command
  gdb/tui: disable tui mode when an assert triggers
  gdb/tui: make m_horizontal_offset private
  gdb/tui: rewrite of tui_source_window_base to handle very long lines
  gdb/tui: avoid extra refresh_window on horizontal scroll
  gdb/tui: avoid extra refresh_window on vertical scroll
  gdb/tui: more debug output
  gdb/tui: make use of a scoped_restore

 gdb/event-top.c                               |   8 +
 gdb/testsuite/gdb.tui/completion.exp          |  18 +-
 .../gdb.tui/tui-disasm-long-lines.exp         |  15 +-
 gdb/testsuite/gdb.tui/tui-focus.c             |  22 ++
 gdb/testsuite/gdb.tui/tui-focus.exp           | 137 +++++++++++
 gdb/testsuite/gdb.tui/tui-layout.exp          |  57 ++++-
 .../gdb.tui/tui-nl-filtered-output.exp        |  41 ++--
 gdb/testsuite/lib/tuiterm.exp                 |  18 +-
 gdb/tui/tui-io.c                              |  10 +-
 gdb/tui/tui-layout.c                          |  11 +-
 gdb/tui/tui-layout.h                          |  45 ++++
 gdb/tui/tui-win.c                             |  74 +++++-
 gdb/tui/tui-winsource.c                       | 216 ++++++++++++++++--
 gdb/tui/tui-winsource.h                       |  69 +++++-
 gdb/tui/tui.h                                 |   3 +
 gdb/utils.c                                   |   7 +-
 16 files changed, 656 insertions(+), 95 deletions(-)
 create mode 100644 gdb/testsuite/gdb.tui/tui-focus.c
 create mode 100644 gdb/testsuite/gdb.tui/tui-focus.exp


base-commit: dcd469925324f430e8cf656c7f63538dd7a01d08
-- 
2.25.4


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

end of thread, other threads:[~2023-01-27 16:31 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-06 10:25 [PATCH 00/15] Mixed bag of TUI tests and fixes Andrew Burgess
2023-01-06 10:25 ` [PATCH 01/15] gdb/testsuite: extend gdb.tui/tui-layout.exp test script Andrew Burgess
2023-01-25 11:29   ` Andrew Burgess
2023-01-06 10:25 ` [PATCH 02/15] gdb/testsuite: update gdb.tui/tui-disasm-long-lines.exp Andrew Burgess
2023-01-25 11:29   ` Andrew Burgess
2023-01-06 10:25 ` [PATCH 03/15] gdb/testsuite: update gdb.tui/tui-nl-filtered-output.exp Andrew Burgess
2023-01-25 11:30   ` Andrew Burgess
2023-01-06 10:25 ` [PATCH 04/15] gdb/testsuite/tui: more testing of the 'focus' command Andrew Burgess
2023-01-25 11:32   ` Andrew Burgess
2023-01-06 10:25 ` [PATCH 05/15] gdb/tui: convert if/error to an assert Andrew Burgess
2023-01-25 11:33   ` Andrew Burgess
2023-01-06 10:25 ` [PATCH 06/15] gdb/tui: better filtering of tab completion results for focus command Andrew Burgess
2023-01-25 11:33   ` Andrew Burgess
2023-01-06 10:25 ` [PATCH 07/15] gdb/testsuite: fix line feed scrolling in tuiterm.exp Andrew Burgess
2023-01-06 10:25 ` [PATCH 08/15] gdb/tui: improve errors from tui focus command Andrew Burgess
2023-01-06 10:25 ` [PATCH 09/15] gdb/tui: disable tui mode when an assert triggers Andrew Burgess
2023-01-06 10:25 ` [PATCH 10/15] gdb/tui: make m_horizontal_offset private Andrew Burgess
2023-01-06 10:25 ` [PATCH 11/15] gdb/tui: rewrite of tui_source_window_base to handle very long lines Andrew Burgess
2023-01-06 10:25 ` [PATCH 12/15] gdb/tui: avoid extra refresh_window on horizontal scroll Andrew Burgess
2023-01-06 10:25 ` [PATCH 13/15] gdb/tui: avoid extra refresh_window on vertical scroll Andrew Burgess
2023-01-06 10:25 ` [PATCH 14/15] gdb/tui: more debug output Andrew Burgess
2023-01-06 10:25 ` [PATCH 15/15] gdb/tui: make use of a scoped_restore Andrew Burgess
2023-01-25 12:01   ` Andrew Burgess
2023-01-25 12:08 ` [PATCHv2 0/8] Mixed bag of TUI tests and fixes Andrew Burgess
2023-01-25 12:08   ` [PATCHv2 1/8] gdb/testsuite: fix line feed scrolling in tuiterm.exp Andrew Burgess
2023-01-25 19:46     ` Tom Tromey
2023-01-25 12:08   ` [PATCHv2 2/8] gdb/tui: improve errors from tui focus command Andrew Burgess
2023-01-25 12:08   ` [PATCHv2 3/8] gdb/tui: disable tui mode when an assert triggers Andrew Burgess
2023-01-25 12:08   ` [PATCHv2 4/8] gdb/tui: make m_horizontal_offset private Andrew Burgess
2023-01-25 12:08   ` [PATCHv2 5/8] gdb/tui: rewrite of tui_source_window_base to handle very long lines Andrew Burgess
2023-01-25 12:08   ` [PATCHv2 6/8] gdb/tui: avoid extra refresh_window on horizontal scroll Andrew Burgess
2023-01-25 20:05     ` Tom Tromey
2023-01-25 12:08   ` [PATCHv2 7/8] gdb/tui: avoid extra refresh_window on vertical scroll Andrew Burgess
2023-01-25 12:08   ` [PATCHv2 8/8] gdb/tui: more debug output Andrew Burgess
2023-01-25 20:07   ` [PATCHv2 0/8] Mixed bag of TUI tests and fixes Tom Tromey
2023-01-27 16:31     ` 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).