Implement pahole-like 'ptype /o' option
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / term.exp
... / ...
CommitLineData
1# Copyright 1988-2017 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
16if { [prepare_for_testing "failed to prepare" term term.c] } {
17 return -1
18}
19
20# Once before running the program.
21gdb_test "info terminal" \
22 "No saved terminal information.*" \
23 "test info terminal"
24
25if ![runto_main] then {
26 fail "can't run to main"
27 return 0
28}
29
30# Once while the program is running and stopped.
31
32# While only native targets save terminal status, we still test
33# everywhere to make sure that the command doesn't misbehave.
34if {[target_info gdb_protocol] == ""} {
35 set term_re "Inferior's terminal status .currently saved by GDB.:.*"
36} else {
37 set term_re "No saved terminal information\\."
38}
39
40gdb_test "info terminal" $term_re "info terminal at breakpoint"
41
42gdb_continue_to_end
43
44# One last time after the program having exited.
45gdb_test "info terminal" \
46 "No saved terminal information.*" \
47 "test info terminal #2"
This page took 0.023237 seconds and 4 git commands to generate.