]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/consecutive.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / consecutive.exp
CommitLineData
1d506c26 1# Copyright 2001-2024 Free Software Foundation, Inc.
c2b8fa57
MS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c2b8fa57 6# (at your option) any later version.
e22f8b7c 7#
c2b8fa57
MS
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.
e22f8b7c 12#
c2b8fa57 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c2b8fa57 15
c2b8fa57
MS
16# This file was written by Michael Snyder. (msnyder@redhat.com)
17
c2b8fa57
MS
18#
19# Test breakpoints at consecutive instruction addresses.
20#
21
c2b8fa57 22
f76495c8 23standard_testfile
c2b8fa57 24
5b362f04 25if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug nowarnings}]} {
c2b8fa57
MS
26 return -1
27}
28
65a33d75 29if {![runto_main]} {
cdd42066 30 return
c2b8fa57
MS
31}
32
7c99e7e2
TV
33set is_stmt [is_stmt_addresses $srcfile]
34
c2b8fa57
MS
35set nl "\[\r\n\]+"
36
37gdb_breakpoint foo
38gdb_test "continue" "Breakpoint $decimal, foo .*" \
39 "continue to breakpoint in foo"
40
41set bp_addr 0
42set stop_addr 0
43
ad3986f0 44gdb_test_multiple "x /2i \$pc" "get breakpoint address for foo" {
2b28d209 45 -re "=> $hex.*${nl} ($hex).*$gdb_prompt $" {
c2b8fa57
MS
46 set bp_addr $expect_out(1,string)
47 pass "get breakpoint address for foo"
48 }
c2b8fa57
MS
49}
50
51gdb_test "break \*$bp_addr" "Breakpoint $decimal at $bp_addr: file .*" \
52 "set bp, 2nd instr"
53
ad3986f0 54gdb_test_multiple "step" "stopped at bp, 2nd instr" {
7c99e7e2 55 -re -wrap "Breakpoint $decimal, ($hex) in foo.*" {
c2b8fa57 56 set stop_addr $expect_out(1,string)
65a33d75 57 if {[eval expr "$bp_addr == $stop_addr"]} {
c2b8fa57
MS
58 pass "stopped at bp, 2nd instr"
59 } else {
60 fail "stopped at bp, 2nd instr (wrong address)"
61 }
62 }
7c99e7e2
TV
63 -re -wrap "Breakpoint $decimal, foo.*" {
64 set stop_addr [get_valueof "/x" "\$pc" "" "value of pc"]
65 set stop_addr_is_stmt [hex_in_list $stop_addr $is_stmt]
65a33d75 66 if {!$stop_addr_is_stmt} {
7c99e7e2 67 fail "stopped at bp, 2nd instr (missing hex prefix)"
65a33d75 68 } elseif {[eval expr "$bp_addr == $stop_addr"]} {
7c99e7e2
TV
69 pass "stopped at bp, 2nd instr"
70 } else {
71 fail "stopped at bp, 2nd instr (wrong address)"
72 }
73 }
c2b8fa57
MS
74}
75