[review] Display "main" on initial TUI startup
Commit Message
Change URL: https://gnutoolchain-gerrit.osci.io/r/c/binutils-gdb/+/644
......................................................................
Display "main" on initial TUI startup
I noticed that even when there's a symbol file, "tui enable" won't
show "main" by default. I think it should, and this patch fixes this.
gdb/ChangeLog
2019-11-14 Tom Tromey <tom@tromey.com>
* tui/tui.c (tui_enable): Call tui_display_main.
gdb/testsuite/ChangeLog
2019-11-14 Tom Tromey <tom@tromey.com>
* gdb.tui/list.exp: Check for source on initial listing.
Change-Id: Ic7bfc930e1179f5b61111e30a2dae46a98b00064
---
M gdb/ChangeLog
M gdb/testsuite/ChangeLog
M gdb/testsuite/gdb.tui/list.exp
M gdb/tui/tui.c
4 files changed, 11 insertions(+), 1 deletion(-)
@@ -1,5 +1,9 @@
2019-11-14 Tom Tromey <tom@tromey.com>
+ * tui/tui.c (tui_enable): Call tui_display_main.
+
+2019-11-14 Tom Tromey <tom@tromey.com>
+
* tui/tui-disasm.c (tui_get_begin_asm_address): Use
get_current_source_symtab_and_line, and main_name.
@@ -1,3 +1,7 @@
+2019-11-14 Tom Tromey <tom@tromey.com>
+
+ * gdb.tui/list.exp: Check for source on initial listing.
+
2019-11-14 Tom Tromey <tromey@adacore.com>
* gdb.base/gdbvars.exp (test_convenience_variables): Add
@@ -28,7 +28,7 @@
unsupported "TUI not supported"
}
-Term::check_contents "initial source listing" "No Source Available"
+Term::check_contents "initial source listing" "21 *return 0"
Term::command "layout asm"
Term::check_contents "asm window shows main" "$hex <main>"
@@ -512,6 +512,8 @@
if (deprecated_safe_get_selected_frame ())
tui_show_frame_info (deprecated_safe_get_selected_frame ());
+ else
+ tui_display_main ();
/* Restore TUI keymap. */
tui_set_key_mode (tui_current_key_mode);