Fix PR 20345 - call_function_by_hand_dummy: Assertion `tp->thread_fsm == &sm->thread_...
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / consecutive.exp
CommitLineData
618f726f 1# Copyright 2001-2016 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
f76495c8 25if [get_compiler_info] {
b60f0898 26 return -1
c2b8fa57
MS
27}
28
f76495c8
TT
29if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug nowarnings}]} {
30 untested $testfile.exp
c2b8fa57
MS
31 return -1
32}
33
c2b8fa57
MS
34if ![runto_main] then {
35 perror "couldn't run to breakpoint"
36 continue
37}
38
39set nl "\[\r\n\]+"
40
41gdb_breakpoint foo
42gdb_test "continue" "Breakpoint $decimal, foo .*" \
43 "continue to breakpoint in foo"
44
45set bp_addr 0
46set stop_addr 0
47
ad3986f0 48gdb_test_multiple "x /2i \$pc" "get breakpoint address for foo" {
2b28d209 49 -re "=> $hex.*${nl} ($hex).*$gdb_prompt $" {
c2b8fa57
MS
50 set bp_addr $expect_out(1,string)
51 pass "get breakpoint address for foo"
52 }
c2b8fa57
MS
53}
54
55gdb_test "break \*$bp_addr" "Breakpoint $decimal at $bp_addr: file .*" \
56 "set bp, 2nd instr"
57
ad3986f0 58gdb_test_multiple "step" "stopped at bp, 2nd instr" {
c2b8fa57
MS
59 -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
60 set stop_addr $expect_out(1,string)
61 if [eval expr "$bp_addr == $stop_addr"] then {
62 pass "stopped at bp, 2nd instr"
63 } else {
64 fail "stopped at bp, 2nd instr (wrong address)"
65 }
66 }
c2b8fa57
MS
67}
68
This page took 2.229081 seconds and 4 git commands to generate.