]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/consecutive.exp
opcodes: bfin: simplify field width processing and fix build warnings
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / consecutive.exp
CommitLineData
0b302171 1# Copyright 2001, 2007-2012 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
MS
22
23set testfile "consecutive"
24set srcfile ${testfile}.c
25set binfile ${objdir}/${subdir}/${testfile}
26
fc91c6c2 27if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
b60f0898
JB
28 untested consecutive.exp
29 return -1
c2b8fa57
MS
30}
31
32if [get_compiler_info ${binfile}] {
33 return -1
34}
35
36gdb_exit
37gdb_start
38gdb_reinitialize_dir $srcdir/$subdir
39gdb_load ${binfile}
40
c2b8fa57
MS
41if ![runto_main] then {
42 perror "couldn't run to breakpoint"
43 continue
44}
45
46set nl "\[\r\n\]+"
47
48gdb_breakpoint foo
49gdb_test "continue" "Breakpoint $decimal, foo .*" \
50 "continue to breakpoint in foo"
51
52set bp_addr 0
53set stop_addr 0
54
ad3986f0 55gdb_test_multiple "x /2i \$pc" "get breakpoint address for foo" {
2b28d209 56 -re "=> $hex.*${nl} ($hex).*$gdb_prompt $" {
c2b8fa57
MS
57 set bp_addr $expect_out(1,string)
58 pass "get breakpoint address for foo"
59 }
c2b8fa57
MS
60}
61
62gdb_test "break \*$bp_addr" "Breakpoint $decimal at $bp_addr: file .*" \
63 "set bp, 2nd instr"
64
ad3986f0 65gdb_test_multiple "step" "stopped at bp, 2nd instr" {
c2b8fa57
MS
66 -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
67 set stop_addr $expect_out(1,string)
68 if [eval expr "$bp_addr == $stop_addr"] then {
69 pass "stopped at bp, 2nd instr"
70 } else {
71 fail "stopped at bp, 2nd instr (wrong address)"
72 }
73 }
c2b8fa57
MS
74}
75