1 # This testcase is part of GDB, the GNU debugger.
3 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007, 2008, 2009
4 # Free Software Foundation, Inc.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 # ending-run.exp -- Expect script to test ending a test run in gdb
25 if { [prepare_for_testing ending-run.exp ending-run] } {
28 remote_exec build "rm -f core"
30 # CHFts23469: Test that you can "clear" a bp set at
31 # a line _before_ the routine (which will default to the
32 # first line in the routine, which turns out to correspond
33 # to the prolog--that's another bug...)
36 gdb_test "b ending-run.c:1" ".*Breakpoint.*ending-run.c, line 1.*" \
37 "bpt at line before routine"
39 gdb_test "b ending-run.c:14" \
40 ".*Note.*also.*Breakpoint 2.*ending-run.c, line 14.*" \
41 "b ending-run.c:14, one"
43 # Set up to go to the next-to-last line of the program
45 gdb_test "b ending-run.c:31" ".*Breakpoint 3.*ending-run.c, line 31.*"
47 # Expect to hit the bp at line "1", but symbolize this
48 # as line "13". Then try to clear it--this should work.
51 gdb_test "" ".*Breakpoint.*1.*callee.*14.*" "run"
53 gdb_test "cle" ".*Deleted breakpoints 1 2.*" "clear worked"
56 -re ".* breakpoint .* breakpoint .*$gdb_prompt $" {
57 fail "cleared bp at line before routine"
59 -re ".*3.*main.*31.*$gdb_prompt $" {
60 pass "cleared bp at line before routine"
62 -re ".*$gdb_prompt $" {
63 fail "cleared bp at line before routine (info b)"
67 # Test some other "clear" combinations
69 gdb_test "b ending-run.c:1" ".*Breakpoint.*4.*"
70 gdb_test "b ending-run.c:14" ".*Note.*also.*Breakpoint.*5.*" "b ending-run.c:14, two"
71 gdb_test "cle ending-run.c:14" \
72 ".*Deleted breakpoint 5.*" "Cleared 2 by line"
74 send_gdb "inf line ending-run.c:14\n"
76 -re ".*address (0x\[0-9a-fA-F]*).*$gdb_prompt $" {
77 set line_nine $expect_out(1,string)
78 gdb_test "b ending-run.c:14" ".*Breakpoint 6.*ending-run.c, line 14.*"
79 gdb_test "b *$line_nine" ".*Note.*also.*Breakpoint 7.*" "Breakpoint 7 at *ending-run.c:14"
80 gdb_test "cle" ".*Deleted breakpoints 4 6 7.*" "Clear 2 by default"
82 -re ".*$gdb_prompt $" {
83 fail "need to fix test for new compile outcome"
89 -re ".* breakpoint .* breakpoint .*$gdb_prompt $" {
90 fail "all set to continue (didn't clear bps)"
92 -re ".*3.*main.*31.*$gdb_prompt $" {
93 pass "all set to continue"
95 -re ".*$gdb_prompt $" {
96 fail "all set to continue (missing bp at end)"
101 # See if we can step out with control. The "1 2 3" stuff
102 # is output from the program.
104 if ![gdb_skip_stdio_test "cont"] {
105 gdb_test "cont" ".*1 2 7 14 23 34 47 62 79.*Breakpoint.*31.*"
107 gdb_test "cont" ".*Breakpoint.*31.*"
110 if ![gdb_skip_stdio_test "Step to return"] {
111 gdb_test "next" ".*Goodbye!.*32.*" \
114 gdb_test "next" "" ""
117 set old_timeout $timeout
123 -re "33.*$gdb_prompt $" {
124 # sometimes we stop at the closing brace, if so, do another next
126 fail "step out of main"
133 -re ".*Unable to find return pc for this frame.*$gdb_prompt $" {
134 fail "step out of main"
137 -re ".*in.*start.*$gdb_prompt $" {
138 pass "step out of main"
140 -re ".*in.*bsp_trap.*$gdb_prompt $" {
141 pass "step out of main"
143 -re ".*in.*init.*$gdb_prompt $" {
144 # This is what happens on sparc64-elf ultra.
145 pass "step out of main"
147 -re ".*in.*dll_crt0_1.*$gdb_prompt $" {
148 # This is what happens on Cygwin.
149 pass "step out of main"
151 -re ".*Program exited normally.*$gdb_prompt $" {
152 # This is what happens on Linux i86 (and I would expect others)
154 pass "step out of main"
156 -re ".*in .nope ().*$gdb_prompt $" {
157 # This is what happens on Solaris currently -sts 1999-08-25
158 pass "step out of main"
160 -re ".*in _int_reset ().*$gdb_prompt $" {
161 # This is what happens on Sanyo XStormy16
162 pass "step out of main"
164 -re ".*init ().*$gdb_prompt $" {
165 # This is what happens on many Mips targets
166 pass "step out of main"
168 -re ".*in ..change.mode ().*$gdb_prompt $" {
169 # This is what happens on ARM in thumb mode -fn 2000-02-01
170 pass "step out of main"
172 -re ".*__rt_entry ().*$gdb_prompt $" {
173 # This is what happens on the ARM RVDS runtime
174 pass "step out of main"
176 -re ".*in.*\\\$START\\\$.*from.*dld.sl.*$gdb_prompt $" {
177 pass "step out of main"
179 -re ".*in __wrap__?main ().*$gdb_prompt $" {
180 pass "step out of main"
182 -re "__setup_argv_for_main (.*).*$gdb_prompt $" {
183 # On sh, another wrapper function (start_l) exists, so
184 # another `next' is necessary.
185 gdb_test "next" ".*in start_l ().*" "step out of main"
187 -re ".*in.*currently asm.*$gdb_prompt $" {
188 pass "step out of main"
190 -re "_*start\[0-9\]* \\(\[^)\]*\\).*$gdb_prompt $" {
191 pass "step out of main"
193 -re ".*Program received signal SIGTRAP.*$gdb_prompt $" {
194 pass "step out of main"
196 -re ".*$gdb_prompt $" { fail "step out of main" }
197 timeout { fail "step out of main" }
200 # When we're talking to a program running on a real stand-alone board,
201 # every BSP's exit function behaves differently, so there's no single
202 # way to tell whether we've exited gracefully or not. So don't run
203 # these tests when use_gdb_stub is set, or when we're running under Cygmon.
204 set program_exited_normally 0
205 set program_not_exited 0
206 set program_in_exit 0
207 if {! [target_info exists use_gdb_stub]
208 && (! [target_info exists use_cygmon] || ! [target_info use_cygmon])} {
209 global program_exited;
210 if {[eval expr $program_exited == 0]} {
213 -re "Program exited normally.*$gdb_prompt $" {
214 # If we actually have debug info for the start function,
215 # then we won't get the "Single-stepping until function
217 pass "step to end of run"
218 set program_exited_normally 1
220 -re "Single.*EXIT code 0\r\n.*Program exited normally.*$gdb_prompt $" {
221 pass "step to end of run (status wrapper)"
222 set program_exited_normally 1
224 -re "Single.*EXIT code 0\r\n.*$gdb_prompt $" {
225 pass "step to end of run (status wrapper)"
227 -re ".*Single.*Program exited.*$gdb_prompt $" {
228 pass "step to end of run"
229 set program_exited_normally 1
231 -re ".*Single.*in exit.*from.*dld.sl.*$gdb_prompt $" {
232 pass "step to end of run"
233 set program_in_exit 1
235 -re ".*Single.*_int_reset.*$gdb_prompt $" {
236 pass "step to end of run"
237 if {![istarget "xstormy16-*-*"]} {
238 set program_exited_normally 1
241 -re ".*$gdb_prompt $" {
242 fail "step to end of run"
243 set program_not_exited 1
246 fail "(timeout) step to end of run"
247 set program_not_exited 1
252 if {$program_in_exit} {
253 if {[gdb_test "c" ".*" "continue after exit"] == 0} {
254 set program_exited_normally 1
257 unsupported "continue after exit"
260 set timeout $old_timeout
262 if {$program_exited_normally} {
263 gdb_test "n" ".*The program is not being run.*" "don't step after run"
264 } elseif {$program_not_exited} {
265 unresolved "don't step after run"
267 unsupported "don't step after run"
270 set exec_output [remote_exec host "ls core"]
272 if [ regexp "core not found" $exec_output] {
273 pass "No core dumped on quit"
275 if [ regexp "No such file or directory" $exec_output] {
276 pass "ls: core (No core dumped on quit)"
278 remote_exec build "rm -f core"
279 fail "ls: core (Core dumped on quit)"
284 #remote_exec build "rm -f ${binfile}"