Replace xstrvprintf usages with string_vprintf
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / term.exp
CommitLineData
e2882c85 1# Copyright 1988-2018 Free Software Foundation, Inc.
c906108c
SS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
5b362f04 16if { [prepare_for_testing "failed to prepare" term term.c] } {
5f8cefd7 17 return -1
c1d88655
UW
18}
19
5f8cefd7
PA
20# Once before running the program.
21gdb_test "info terminal" \
22 "No saved terminal information.*" \
23 "test info terminal"
c906108c 24
5f8cefd7 25if ![runto_main] then {
bc6c7af4 26 fail "can't run to main"
5f8cefd7 27 return 0
c906108c
SS
28}
29
5f8cefd7 30# Once while the program is running and stopped.
7594f623
PA
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"
c906108c 41
5f8cefd7
PA
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 3.556138 seconds and 4 git commands to generate.