]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/term.exp
Fix test names starting with uppercase output by basic functions
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / term.exp
CommitLineData
618f726f 1# Copyright 1988-2016 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
676a0442
DJ
16# Don't try this for remote targets.
17if [is_remote target] then {
c906108c
SS
18 continue
19}
20
5f8cefd7
PA
21if { [prepare_for_testing term.exp term term.c] } {
22 return -1
c1d88655
UW
23}
24
5f8cefd7
PA
25# Once before running the program.
26gdb_test "info terminal" \
27 "No saved terminal information.*" \
28 "test info terminal"
c906108c 29
5f8cefd7 30if ![runto_main] then {
bc6c7af4 31 fail "can't run to main"
5f8cefd7 32 return 0
c906108c
SS
33}
34
5f8cefd7
PA
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"
c906108c 39
5f8cefd7
PA
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"