import gdb-1999-06-28 snapshot
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / term.exp
CommitLineData
c906108c
SS
1# Copyright (C) 1988, 1990, 1991, 1992, 1997 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 2 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, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20# This file was written by Rob Savoye. (rob@cygnus.com)
21
22if $tracelevel then {
23 strace $tracelevel
24}
25
26# This only works for native, I think.
27if ![isnative] then {
28 continue
29}
30
31gdb_start
32
33#
34# test running programs
35#
36set prms_id 0
37set bug_id 0
38
39set testfile "run"
40set srcfile ${testfile}.c
41set binfile ${objdir}/${subdir}/${testfile}
42if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
43 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
44}
45
085dd6e6
JM
46gdb_exit
47gdb_start
c906108c
SS
48delete_breakpoints
49gdb_reinitialize_dir $srcdir/$subdir
50gdb_load ${binfile}
51
52gdb_test "set print sevenbit-strings" "" "test set print sevenbit-strings"
53gdb_test "set print address off" "" "test set print address off"
54gdb_test "set width 0" "" "test set width 0"
55gdb_test "info terminal" "No saved terminal information.*" "test info terminal"
56gdb_run_cmd 5
57gdb_expect {
58 -re ".*120.*Program exited normally.*$gdb_prompt $" {
59 gdb_test "info terminal" "No saved terminal information.*" "test info terminal #2"
60 }
61 default {
62 fail "term.exp, factorial didn't run to completion for info terminal"
63 }
64}
65
66# In mid-execution
67gdb_breakpoint main
68gdb_run_cmd 5
69gdb_expect {
70 -re ".*Breakpoint \[0-9\]+,.*main.*if .argc != 2.*$gdb_prompt $" {
71 gdb_test "info terminal" "Inferior's terminal status .currently saved by GDB.:.*" "info terminal at breakpoint"
72 }
73 -re ".*$gdb_prompt $" { fail "info terminal at breakpoint" }
74 timeout { fail "(timeout) info terminal at breakpoint" }
75}
This page took 0.029623 seconds and 4 git commands to generate.