]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/term.exp
run copyright.sh for 2011.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / term.exp
CommitLineData
0fb0cc75 1# Copyright 1988, 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1999, 2007,
7b6bb8da 2# 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
c906108c
SS
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
c906108c 7# (at your option) any later version.
e22f8b7c 8#
c906108c
SS
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
c906108c 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 16
c906108c
SS
17# This file was written by Rob Savoye. (rob@cygnus.com)
18
19if $tracelevel then {
20 strace $tracelevel
21}
22
676a0442
DJ
23# Don't try this for remote targets.
24if [is_remote target] then {
c906108c
SS
25 continue
26}
27
c1d88655
UW
28if [target_info exists noargs] then {
29 verbose "Skipping term.exp because of noargs."
30 return
31}
32
c906108c
SS
33gdb_start
34
35#
36# test running programs
37#
c906108c 38
aa81e255
JK
39if { [prepare_for_testing term.exp term run.c] } {
40 return -1
c906108c
SS
41}
42
27d3a1a2
MS
43gdb_test_no_output "set print sevenbit-strings"
44gdb_test_no_output "set print address off"
45gdb_test_no_output "set width 0"
46
c906108c
SS
47gdb_test "info terminal" "No saved terminal information.*" "test info terminal"
48gdb_run_cmd 5
49gdb_expect {
50 -re ".*120.*Program exited normally.*$gdb_prompt $" {
51 gdb_test "info terminal" "No saved terminal information.*" "test info terminal #2"
52 }
53 default {
54 fail "term.exp, factorial didn't run to completion for info terminal"
55 }
56}
57
58# In mid-execution
59gdb_breakpoint main
60gdb_run_cmd 5
61gdb_expect {
62 -re ".*Breakpoint \[0-9\]+,.*main.*if .argc != 2.*$gdb_prompt $" {
63 gdb_test "info terminal" "Inferior's terminal status .currently saved by GDB.:.*" "info terminal at breakpoint"
64 }
65 -re ".*$gdb_prompt $" { fail "info terminal at breakpoint" }
66 timeout { fail "(timeout) info terminal at breakpoint" }
67}