1 |
106 |
markom |
# 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 |
|
|
|
22 |
|
|
if $tracelevel then {
|
23 |
|
|
strace $tracelevel
|
24 |
|
|
}
|
25 |
|
|
|
26 |
|
|
# This only works for native, I think.
|
27 |
|
|
if ![isnative] then {
|
28 |
|
|
continue
|
29 |
|
|
}
|
30 |
|
|
|
31 |
|
|
gdb_start
|
32 |
|
|
|
33 |
|
|
#
|
34 |
|
|
# test running programs
|
35 |
|
|
#
|
36 |
|
|
set prms_id 0
|
37 |
|
|
set bug_id 0
|
38 |
|
|
|
39 |
|
|
set testfile "run"
|
40 |
|
|
set srcfile ${testfile}.c
|
41 |
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
42 |
|
|
if { [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 |
|
|
|
46 |
|
|
gdb_exit
|
47 |
|
|
gdb_start
|
48 |
|
|
delete_breakpoints
|
49 |
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
50 |
|
|
gdb_load ${binfile}
|
51 |
|
|
|
52 |
|
|
gdb_test "set print sevenbit-strings" "" "test set print sevenbit-strings"
|
53 |
|
|
gdb_test "set print address off" "" "test set print address off"
|
54 |
|
|
gdb_test "set width 0" "" "test set width 0"
|
55 |
|
|
gdb_test "info terminal" "No saved terminal information.*" "test info terminal"
|
56 |
|
|
gdb_run_cmd 5
|
57 |
|
|
gdb_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
|
67 |
|
|
gdb_breakpoint main
|
68 |
|
|
gdb_run_cmd 5
|
69 |
|
|
gdb_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 |
|
|
}
|