]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/dso2dso.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / dso2dso.exp
CommitLineData
1d506c26 1# Copyright 2015-2024 Free Software Foundation, Inc.
4dafcdeb
JB
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
52bbc560
JB
16# The purpose of this testcase is to verify that we can "next" over
17# a call to a function provided by one shared library made from another
18# shared library, and that GDB stops at the expected location. In this
19# case, the call is made from sub1 (provided by libdso1) and we are
20# calling sub2 (provided by libdso2).
21#
22# Note that, while this is not the main purpose of this testcase, it
23# also happens to exercise an issue with displaced stepping on amd64
24# when libdso1 is mapped at an address greater than 0xffffffff.
25
d6195dc9 26require allow_shlib_tests
4dafcdeb
JB
27
28standard_testfile
29
30set output_dir [standard_output_file {}]
31
32set libdso2 $testfile-dso2
33set srcfile_libdso2 $srcdir/$subdir/$libdso2.c
34set binfile_libdso2 [standard_output_file $libdso2.so]
35
36set libdso1 $testfile-dso1
37set srcfile_libdso1 $srcdir/$subdir/$libdso1.c
38set binfile_libdso1 [standard_output_file $libdso1.so]
39
40if { [gdb_compile_shlib $srcfile_libdso2 $binfile_libdso2 \
2f413264 41 [list debug]] != "" } {
84c93cd5 42 untested "failed to compile shared library 2"
4dafcdeb
JB
43 return -1
44}
45
46if { [gdb_compile_shlib $srcfile_libdso1 $binfile_libdso1 \
2f413264 47 [list debug]] != "" } {
84c93cd5 48 untested "failed to compile shared library 1"
4dafcdeb
JB
49 return -1
50}
51
52if { [gdb_compile $srcdir/$subdir/$srcfile $binfile executable \
53 [list debug shlib=$binfile_libdso2 shlib=$binfile_libdso1]] != "" } {
54 return -1
55}
56
57clean_restart $binfile
d9019901
SM
58gdb_load_shlib $binfile_libdso2
59gdb_load_shlib $binfile_libdso1
4dafcdeb
JB
60
61if { ![runto_main] } {
62 return -1
63}
64
ea8812bc 65set bp_location [gdb_get_line_number "STOP HERE" [file tail $srcfile_libdso1]]
26b188a2 66gdb_breakpoint ${libdso1}.c:${bp_location}
4dafcdeb
JB
67
68gdb_continue_to_breakpoint "at call to sub2" \
69 ".*sub2 ().*"
70
71gdb_test "next" \
72 ".*return 5;.*" \
73 "next over call to sub2"