Add horizontal splitting to TUI layout
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.tui / new-layout.exp
CommitLineData
ee325b61
TT
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
18load_lib "tuiterm.exp"
19
20standard_testfile tui-layout.c
21
22if {[build_executable "failed to prepare" ${testfile} ${srcfile}] == -1} {
23 return -1
24}
25
26Term::clean_restart 24 80 $testfile
27
28gdb_test "tui new-layout" \
29 "No layout name specified"
30gdb_test "tui new-layout example" \
31 "New layout does not contain any windows"
32gdb_test "tui new-layout example zzq" \
33 "Unknown window \"zzq\""
34gdb_test "tui new-layout example src 1 src 1" \
35 "Window \"src\" seen twice in layout"
36gdb_test "tui new-layout example src 1" \
37 "New layout does not contain the \"cmd\" window"
c22fef7e
TT
38gdb_test "tui new-layout example src 1}" \
39 "Extra '}' in layout specification"
40gdb_test "tui new-layout example {src 1} 1}" \
41 "Extra '}' in layout specification"
42gdb_test "tui new-layout example {src 1" \
43 "Missing '}' in layout specification"
ee325b61
TT
44
45gdb_test_no_output "tui new-layout example asm 1 status 0 cmd 1"
46
47gdb_test "help layout example" \
48 "Apply the \"example\" layout.*tui new-layout example asm 1 status 0 cmd 1"
49
c22fef7e
TT
50gdb_test_no_output "tui new-layout example2 {asm 1 status 0} 1 cmd 1"
51
52gdb_test "help layout example2" \
53 "Apply the \"example2\" layout.*tui new-layout example2 {asm 1 status 0} 1 cmd 1"
54
7c043ba6
TT
55gdb_test_no_output "tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1"
56
57gdb_test "help layout h" \
58 "Apply the \"h\" layout.*tui new-layout h {-horizontal asm 1 src 1} 1 status 0 cmd 1"
59
ee325b61
TT
60if {![Term::enter_tui]} {
61 unsupported "TUI not supported"
62}
63
64set text [Term::get_all_lines]
65gdb_assert {![string match "No Source Available" $text]} \
66 "initial source listing"
67
68Term::command "layout example"
69Term::check_contents "example layout shows assembly" \
7c043ba6
TT
70 "$hex <main>"
71
72Term::command "layout h"
73Term::check_box "left window box" 0 0 40 15
74Term::check_box "right window box" 39 0 41 15
75Term::check_contents "horizontal display" \
76 "$hex <main>.*21.*return 0"
77
78Term::command "winheight src - 5"
79Term::check_box "left window box after shrink" 0 0 40 10
80Term::check_box "right window box after shrink" 39 0 41 10
81
82Term::command "winheight src + 5"
83Term::check_box "left window box after grow" 0 0 40 15
84Term::check_box "right window box after grow" 39 0 41 15
This page took 0.030688 seconds and 4 git commands to generate.