1 # Copyright 2001, 2007-2012 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/>.
16 # This file was written by Michael Snyder. (msnyder@redhat.com)
23 # Test breakpoints at consecutive instruction addresses.
27 set testfile "consecutive"
28 set srcfile ${testfile}.c
29 set binfile ${objdir}/${subdir}/${testfile}
31 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
32 untested consecutive.exp
36 if [get_compiler_info ${binfile}] {
42 gdb_reinitialize_dir $srcdir/$subdir
45 if ![runto_main] then {
46 perror "couldn't run to breakpoint"
53 gdb_test "continue" "Breakpoint $decimal, foo .*" \
54 "continue to breakpoint in foo"
59 gdb_test_multiple "x /2i \$pc" "get breakpoint address for foo" {
60 -re "=> $hex.*${nl} ($hex).*$gdb_prompt $" {
61 set bp_addr $expect_out(1,string)
62 pass "get breakpoint address for foo"
66 gdb_test "break \*$bp_addr" "Breakpoint $decimal at $bp_addr: file .*" \
69 gdb_test_multiple "step" "stopped at bp, 2nd instr" {
70 -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
71 set stop_addr $expect_out(1,string)
72 if [eval expr "$bp_addr == $stop_addr"] then {
73 pass "stopped at bp, 2nd instr"
75 fail "stopped at bp, 2nd instr (wrong address)"