[v2,5/8] Add TUI test for "list"

Message ID 20190726185134.1856-6-tom@tromey.com
State New, archived
Headers

Commit Message

Tom Tromey July 26, 2019, 6:51 p.m. UTC
  This adds a test to check that the "list" command will update the TUI
source window.

2019-07-21  Tom Tromey  <tom@tromey.com>

	* gdb.tui/list.exp: New file.
---
 gdb/testsuite/ChangeLog        |  4 ++++
 gdb/testsuite/gdb.tui/list.exp | 40 ++++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)
 create mode 100644 gdb/testsuite/gdb.tui/list.exp
  

Patch

diff --git a/gdb/testsuite/gdb.tui/list.exp b/gdb/testsuite/gdb.tui/list.exp
new file mode 100644
index 00000000000..0229b81c8a7
--- /dev/null
+++ b/gdb/testsuite/gdb.tui/list.exp
@@ -0,0 +1,40 @@ 
+# Copyright 2019 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# Ensure that "list" will switch to the source view.
+
+load_lib "tuiterm.exp"
+
+standard_testfile tui-layout.c
+
+if {[build_executable "failed to prepare" ${testfile} ${srcfile}] == -1} {
+    return -1
+}
+
+Term::clean_restart 24 80 $testfile
+if {![Term::enter_tui]} {
+    unsupported "TUI not supported"
+}
+
+set text [Term::get_all_lines]
+gdb_assert {[regexp "No Source Available" $text]} "initial source listing"
+
+Term::command "layout asm"
+set text [Term::get_all_lines]
+gdb_assert {[regexp "$hex <main>" $text]} "asm window shows main"
+
+Term::command "list main"
+set text [Term::get_all_lines]
+gdb_assert {[regexp "21 *return 0" $text]} "list main"