]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.dwarf2/cu-no-addrs.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.dwarf2 / cu-no-addrs.exp
CommitLineData
1d506c26 1# Copyright (C) 2022-2024 Free Software Foundation, Inc.
834eaf92
TT
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
16# Regression test for the situation where aranges covers an address
17# but the CU does not.
18
19load_lib "dwarf.exp"
20
21# This test can only be run on targets which support DWARF-2 and use gas.
ce8d533e 22require dwarf2_support
834eaf92
TT
23
24standard_testfile main.c cu-no-addrs.S
25
26lassign [function_range main ${srcdir}/${subdir}/${srcfile}] \
27 main_start main_length
28
29# Make some DWARF for the test.
30set asm_file [standard_output_file $srcfile2]
31Dwarf::assemble $asm_file {
32 global main_start main_length
33
34 cu {label cu_start} {
35 # The PC range here is intentionally empty -- this was the
36 # trigger for the bug.
37 compile_unit {
38 {language @DW_LANG_C}
39 {DW_AT_low_pc $main_start DW_FORM_addr}
40 {DW_AT_high_pc $main_start DW_FORM_addr}
41 } {
42 DW_TAG_subprogram {
43 {DW_AT_name "main"}
44 {DW_AT_low_pc $main_start DW_FORM_addr}
45 }
46 }
47 }
48
49 aranges {} cu_start {
50 arange {} $main_start $main_length
51 }
52}
53
54if {[prepare_for_testing "failed to prepare" ${testfile} \
55 [list $srcfile $asm_file] {nodebug}]} {
56 return -1
57}
58
59gdb_test "break *$main_start" ".*Breakpoint $decimal at $hex" \
60 "set breakpoint at main address"