]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.dwarf2 / dw2-ref-missing-frame.exp
CommitLineData
1d506c26 1# Copyright 2008-2024 Free Software Foundation, Inc.
86ae69ef
JK
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/>.
810cfdbb 15load_lib dwarf.exp
86ae69ef 16
86ae69ef 17# This test can only be run on targets which support DWARF-2 and use gas.
ce8d533e 18require dwarf2_support
86ae69ef 19
a5ea2303
BK
20standard_testfile .S -func.c -main.c
21lassign [function_range func_nofb \
22 "${srcdir}/${subdir}/${srcfile2} ${srcdir}/${subdir}/${srcfile3}"] \
23 func_nofb_start func_nofb_len
24lassign [function_range func_loopfb \
25 "${srcdir}/${subdir}/${srcfile2} ${srcdir}/${subdir}/${srcfile3}"] \
26 func_loopfb_start func_loopfb_len
27
d0498b32
TV
28set flags {}
29lappend flags \
30 additional_flags=[quote_for_host -DFUNC_NOFB_START=$func_nofb_start]
31lappend flags \
32 additional_flags=[quote_for_host -DFUNC_NOFB_END=$func_nofb_start \
33 + $func_nofb_len]
34lappend flags \
35 additional_flags=[quote_for_host -DFUNC_LOOPFB_START=$func_loopfb_start]
36lappend flags \
37 additional_flags=[quote_for_host -DFUNC_LOOPFB_END=$func_loopfb_start \
38 + $func_loopfb_len]
39
5868a632 40set executable ${testfile}
86ae69ef 41
c2c8a427
TV
42if { [prepare_for_testing_full "failed to prepare" \
43 [list $testfile {} \
44 $srcfile [concat $flags {nodebug}] \
45 $srcfile2 {nodebug} \
46 $srcfile3 {debug}]] == -1 } {
86ae69ef
JK
47 return -1
48}
49
5868a632
JK
50# First try referencing DW_AT_frame_base which is not defined.
51if [runto func_nofb] {
52 gdb_test "p func_nofb_var" {Could not find the frame base for "func_nofb".} "func_nofb print"
53 gdb_test "bt full" " in main .* main_var = 1" "func_nofb backtrace"
af76db58 54}
86ae69ef 55
5868a632
JK
56# GDB could have crashed.
57clean_restart $executable
58
86ae69ef
JK
59# And now try referencing DW_AT_frame_base defined using a self-reference
60# (DW_OP_fbreg).
5868a632
JK
61if [runto func_loopfb] {
62 gdb_test "p func_loopfb_var" "DWARF-2 expression error: Loop detected .*" "func_loopfb print"
63 gdb_test "bt full" " in main .* main_var = 1" "func_loopfb backtrace"
af76db58 64}