| OLD | NEW |
| 1 # Copyright 2001, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 2001, 2007-2012 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 # This program is free software; you can redistribute it and/or modify | 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 | 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 | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 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/>. | 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 # This file was written by Michael Snyder. (msnyder@redhat.com) | 16 # This file was written by Michael Snyder. (msnyder@redhat.com) |
| 17 | 17 |
| 18 if $tracelevel then { | |
| 19 strace $tracelevel | |
| 20 } | |
| 21 | |
| 22 # | 18 # |
| 23 # Test breakpoints at consecutive instruction addresses. | 19 # Test breakpoints at consecutive instruction addresses. |
| 24 # | 20 # |
| 25 | 21 |
| 26 | 22 |
| 27 set testfile "consecutive" | 23 set testfile "consecutive" |
| 28 set srcfile ${testfile}.c | 24 set srcfile ${testfile}.c |
| 29 set binfile ${objdir}/${subdir}/${testfile} | 25 set binfile ${objdir}/${subdir}/${testfile} |
| 30 | 26 |
| 31 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug nowarnings}] != "" } { | 27 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug nowarnings}] != "" } { |
| 32 untested consecutive.exp | 28 untested consecutive.exp |
| 33 return -1 | 29 return -1 |
| 34 } | 30 } |
| 35 | 31 |
| 36 if [get_compiler_info ${binfile}] { | 32 if [get_compiler_info] { |
| 37 return -1 | 33 return -1 |
| 38 } | 34 } |
| 39 | 35 |
| 40 gdb_exit | 36 gdb_exit |
| 41 gdb_start | 37 gdb_start |
| 42 gdb_reinitialize_dir $srcdir/$subdir | 38 gdb_reinitialize_dir $srcdir/$subdir |
| 43 gdb_load ${binfile} | 39 gdb_load ${binfile} |
| 44 | 40 |
| 45 if [target_info exists gdb_stub] { | |
| 46 gdb_step_for_stub; | |
| 47 } | |
| 48 | |
| 49 if ![runto_main] then { | 41 if ![runto_main] then { |
| 50 perror "couldn't run to breakpoint" | 42 perror "couldn't run to breakpoint" |
| 51 continue | 43 continue |
| 52 } | 44 } |
| 53 | 45 |
| 54 set nl "\[\r\n\]+" | 46 set nl "\[\r\n\]+" |
| 55 | 47 |
| 56 gdb_breakpoint foo | 48 gdb_breakpoint foo |
| 57 gdb_test "continue" "Breakpoint $decimal, foo .*" \ | 49 gdb_test "continue" "Breakpoint $decimal, foo .*" \ |
| 58 "continue to breakpoint in foo" | 50 "continue to breakpoint in foo" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 74 -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" { | 66 -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" { |
| 75 set stop_addr $expect_out(1,string) | 67 set stop_addr $expect_out(1,string) |
| 76 if [eval expr "$bp_addr == $stop_addr"] then { | 68 if [eval expr "$bp_addr == $stop_addr"] then { |
| 77 pass "stopped at bp, 2nd instr" | 69 pass "stopped at bp, 2nd instr" |
| 78 } else { | 70 } else { |
| 79 fail "stopped at bp, 2nd instr (wrong address)" | 71 fail "stopped at bp, 2nd instr (wrong address)" |
| 80 } | 72 } |
| 81 } | 73 } |
| 82 } | 74 } |
| 83 | 75 |
| OLD | NEW |