]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.tui/new-layout.exp
Add horizontal splitting to TUI layout
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.tui / new-layout.exp
1 # Copyright 2020 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16 # Test "tui new-layout".
17
18 load_lib "tuiterm.exp"
19
20 standard_testfile tui-layout.c
21
22 if {[build_executable "failed to prepare" ${testfile} ${srcfile}] == -1} {
23 return -1
24 }
25
26 Term::clean_restart 24 80 $testfile
27
28 gdb_test "tui new-layout" \
29 "No layout name specified"
30 gdb_test "tui new-layout example" \
31 "New layout does not contain any windows"
32 gdb_test "tui new-layout example zzq" \
33 "Unknown window \"zzq\""
34 gdb_test "tui new-layout example src 1 src 1" \
35 "Window \"src\" seen twice in layout"
36 gdb_test "tui new-layout example src 1" \
37 "New layout does not contain the \"cmd\" window"
38 gdb_test "tui new-layout example src 1}" \
39 "Extra '}' in layout specification"
40 gdb_test "tui new-layout example {src 1} 1}" \
41 "Extra '}' in layout specification"
42 gdb_test "tui new-layout example {src 1" \
43 "Missing '}' in layout specification"
44
45 gdb_test_no_output "tui new-layout example asm 1 status 0 cmd 1"
46
47 gdb_test "help layout example" \
48 "Apply the \"example\" layout.*tui new-layout example asm 1 status 0 cmd 1"
49
50 gdb_test_no_output "tui new-layout example2 {asm 1 status 0} 1 cmd 1"
51
52 gdb_test "help layout example2" \
53 "Apply the \"example2\" layout.*tui new-layout example2 {asm 1 status 0} 1 cmd 1"
54
55 gdb_test_no_output "tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1"
56
57 gdb_test "help layout h" \
58 "Apply the \"h\" layout.*tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1"
59
60 if {![Term::enter_tui]} {
61 unsupported "TUI not supported"
62 }
63
64 set text [Term::get_all_lines]
65 gdb_assert {![string match "No Source Available" $text]} \
66 "initial source listing"
67
68 Term::command "layout example"
69 Term::check_contents "example layout shows assembly" \
70 "$hex <main>"
71
72 Term::command "layout h"
73 Term::check_box "left window box" 0 0 40 15
74 Term::check_box "right window box" 39 0 41 15
75 Term::check_contents "horizontal display" \
76 "$hex <main>.*21.*return 0"
77
78 Term::command "winheight src - 5"
79 Term::check_box "left window box after shrink" 0 0 40 10
80 Term::check_box "right window box after shrink" 39 0 41 10
81
82 Term::command "winheight src + 5"
83 Term::check_box "left window box after grow" 0 0 40 15
84 Term::check_box "right window box after grow" 39 0 41 15