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