]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.dwarf2/dw2-abs-hi-pc.exp
e93d2faffebad5dd80b42595bb68c2db1e5f6aca
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.dwarf2 / dw2-abs-hi-pc.exp
1 # Copyright 2014-2024 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
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.
12 #
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/>.
15 load_lib dwarf.exp
16
17 # This test can only be run on targets which support DWARF-2 and use gas.
18 require dwarf2_support
19
20 standard_testfile
21
22 set sources \
23 [list \
24 ${testfile}.c \
25 ${testfile}-hello.c \
26 ${testfile}-world.c]
27 set sources [lmap i $sources { set tmp $srcdir/$subdir/$i }]
28
29 lassign [function_range hello $sources] \
30 hello_start hello_len
31 lassign [function_range world $sources] \
32 world_start world_len
33
34 set sources \
35 [list \
36 ${testfile}.c \
37 ${testfile}-hello-dbg.S \
38 ${testfile}-hello.c \
39 ${testfile}-world-dbg.S \
40 ${testfile}-world.c]
41
42 set flags {}
43 lappend flags nodebug
44 lappend flags additional_flags=[quote_for_host -DHELLO_START=$hello_start]
45 lappend flags additional_flags=[quote_for_host -DHELLO_END=$hello_start \
46 + $hello_len]
47 lappend flags additional_flags=[quote_for_host -DWORLD_START=$world_start]
48 lappend flags additional_flags=[quote_for_host -DWORLD_END=$world_start \
49 + $world_len]
50
51 set executable ${testfile}
52 if {[build_executable ${testfile}.exp ${executable} $sources $flags] == -1} {
53 return -1
54 }
55
56 clean_restart $executable
57
58 gdb_test "break hello" \
59 "Breakpoint $decimal at $hex: file .*dw2-abs-hi-pc-hello\\.c, line 24\\."
60
61 gdb_test "break world" \
62 "Breakpoint $decimal at $hex: file .*dw2-abs-hi-pc-world\\.c, line 24\\."