]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.tui/new-layout.exp
Allow TUI sub-layouts in "new-layout" command
[thirdparty/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
ee325b61
TT
55if {![Term::enter_tui]} {
56 unsupported "TUI not supported"
57}
58
59set text [Term::get_all_lines]
60gdb_assert {![string match "No Source Available" $text]} \
61 "initial source listing"
62
63Term::command "layout example"
64Term::check_contents "example layout shows assembly" \
65 "No Assembly Available"