]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/term.exp
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / term.exp
CommitLineData
6aba47ca 1# Copyright 1988, 1990, 1991, 1992, 1994, 1995, 1996, 1997, 1999, 2007
b6ba6518 2# 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
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
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.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18# Please email any bugs, comments, and/or additions to this file to:
19# bug-gdb@prep.ai.mit.edu
20
21# This file was written by Rob Savoye. (rob@cygnus.com)
22
23if $tracelevel then {
24 strace $tracelevel
25}
26
676a0442
DJ
27# Don't try this for remote targets.
28if [is_remote target] then {
c906108c
SS
29 continue
30}
31
c1d88655
UW
32if [target_info exists noargs] then {
33 verbose "Skipping term.exp because of noargs."
34 return
35}
36
c906108c
SS
37gdb_start
38
39#
40# test running programs
41#
42set prms_id 0
43set bug_id 0
44
45set testfile "run"
46set srcfile ${testfile}.c
47set binfile ${objdir}/${subdir}/${testfile}
48if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
49 untested term.exp
50 return -1
c906108c
SS
51}
52
085dd6e6
JM
53gdb_exit
54gdb_start
c906108c
SS
55delete_breakpoints
56gdb_reinitialize_dir $srcdir/$subdir
57gdb_load ${binfile}
58
59gdb_test "set print sevenbit-strings" "" "test set print sevenbit-strings"
60gdb_test "set print address off" "" "test set print address off"
61gdb_test "set width 0" "" "test set width 0"
62gdb_test "info terminal" "No saved terminal information.*" "test info terminal"
63gdb_run_cmd 5
64gdb_expect {
65 -re ".*120.*Program exited normally.*$gdb_prompt $" {
66 gdb_test "info terminal" "No saved terminal information.*" "test info terminal #2"
67 }
68 default {
69 fail "term.exp, factorial didn't run to completion for info terminal"
70 }
71}
72
73# In mid-execution
74gdb_breakpoint main
75gdb_run_cmd 5
76gdb_expect {
77 -re ".*Breakpoint \[0-9\]+,.*main.*if .argc != 2.*$gdb_prompt $" {
78 gdb_test "info terminal" "Inferior's terminal status .currently saved by GDB.:.*" "info terminal at breakpoint"
79 }
80 -re ".*$gdb_prompt $" { fail "info terminal at breakpoint" }
81 timeout { fail "(timeout) info terminal at breakpoint" }
82}