1 # Copyright 1998, 1999, 2007, 2008, 2009 Free Software Foundation, Inc.
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 3 of the License, or
6 # (at your option) any later version.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 set srcfile ${testfile}.c
27 set binfile ${objdir}/${subdir}/${testfile}
30 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
36 # Start with a fresh gdb
40 gdb_reinitialize_dir $srcdir/$subdir
43 if ![runto_main] then {
44 perror "Couldn't run to main"
48 # Set a breakpoint on the statement that we're about to jump to.
49 # The statement doesn't contain a function call.
54 -re "\[Bb\]reakpoint (\[0-9\]*) at 0x\[0-9a-fA-F\]*: file .*${srcfile}, line 22.*$gdb_prompt $"\
55 {set bp_on_non_call $expect_out(1,string)
56 pass "break before jump to non-call"}
58 {fail "break before jump to non-call"}
59 timeout {fail "(timeout) break before jump to non-call"}
62 # Can we jump to the statement? Do we stop there?
66 -re "Breakpoint \[0-9\]*, .*${srcfile}:22.*$gdb_prompt $"\
67 {pass "jump to non-call"}
69 {fail "jump to non-call"}
70 timeout {fail "(timeout) jump to non-call"}
73 # Set a breakpoint on the statement that we're about to jump to.
74 # The statement does contain a function call.
79 -re "\[Bb\]reakpoint (\[0-9\]*) at 0x\[0-9a-fA-F\]*: file .*${srcfile}, line 21.*$gdb_prompt $"\
80 {set bp_on_call $expect_out(1,string)
81 pass "break before jump to call"}
83 {fail "break before jump to call"}
84 timeout {fail "(timeout) break before jump to call"}
87 # Can we jump to the statement? Do we stop there?
91 -re "Breakpoint \[0-9\]*, .*${srcfile}:21.*$gdb_prompt $"\
95 timeout {fail "(timeout) jump to call"}
98 # If we disable the breakpoint at the function call, and then
99 # if we jump to that statement, do we not stop there, but at
100 # the following breakpoint?
102 send_gdb "disable $bp_on_call\n"
105 {pass "disable breakpoint on call"}
106 timeout {fail "(timeout) disable breakpoint on call"}
111 -re "Breakpoint \[0-9\]*, .*${srcfile}:22.*$gdb_prompt $"\
112 {pass "jump to call with disabled breakpoint"}
114 {fail "jump to call with disabled breakpoint"}
115 timeout {fail "(timeout) jump to call with disabled breakpoint"}
118 # Verify that GDB responds gracefully to the "jump" command without
123 -re "Argument required .starting address..*$gdb_prompt $"\
124 {pass "jump without argument disallowed"}
126 {fail "jump without argument disallowed"}
127 timeout {fail "(timeout) jump without argument disallowed"}
130 # Verify that GDB responds gracefully to the "jump" command with
133 send_gdb "jump 21 100\n"
135 -re "Junk at end of line specification: 100.*$gdb_prompt $"\
136 {pass "jump with trailing argument junk"}
138 {fail "jump with trailing argument junk"}
139 timeout {fail "(timeout) jump with trailing argument junk"}
142 # Verify that GDB responds gracefully to a request to jump out of
143 # the current function. (Note that this will very likely cause the
144 # inferior to die. Be prepared to rerun the inferior, if further
145 # testing is desired.)
147 # Try it both ways: confirming and not confirming the jump.
151 -re "Line 12 is not in `main'. Jump anyway.*y or n. $"\
154 -re "Not confirmed.*$gdb_prompt $"\
155 {pass "aborted jump out of current function"}
157 {fail "aborted jump out of current function"}
158 timeout {fail "(timeout) aborted jump out of current function"}
162 {fail "aborted jump out of current function"}
163 timeout {fail "(timeout) aborted jump out of current function"}
168 -re "Line 12 is not in `main'. Jump anyway.*y or n. $"\
171 -re "Continuing at.*$gdb_prompt $"\
172 {pass "jump out of current function"}
174 {fail "jump out of current function"}
175 timeout {fail "(timeout) jump out of current function"}
179 {fail "jump out of current function"}
180 timeout {fail "(timeout) jump out of current function"}