xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/term.exp (revision 1580a27b92f58fcdcb23fdfbc04a7c2b54a0b7c8)
1#   Copyright 1988-2015 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# Don't try this for remote targets.
17if [is_remote target] then {
18    continue
19}
20
21if { [prepare_for_testing term.exp term term.c] } {
22    return -1
23}
24
25# Once before running the program.
26gdb_test "info terminal" \
27    "No saved terminal information.*" \
28    "test info terminal"
29
30if ![runto_main] then {
31    fail "Can't run to main"
32    return 0
33}
34
35# Once while the program is running and stopped.
36gdb_test "info terminal" \
37    "Inferior's terminal status .currently saved by GDB.:.*" \
38    "info terminal at breakpoint"
39
40gdb_continue_to_end
41
42# One last time after the program having exited.
43gdb_test "info terminal" \
44    "No saved terminal information.*" \
45    "test info terminal #2"
46