1 # Copyright 2006-2023 Free Software Foundation, Inc.
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.
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.
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/>.
16 # Test setting breakpoints on shared library functions provided by more
17 # than one shared library, when one of the implementations is a "weak"
18 # symbol. GDB should set a breakpoint at the first copy it finds.
20 if {[skip_shlib_tests]} {
24 # These targets have shared libraries, but weak symbols are not meaningful.
25 if {([istarget *-*-mingw*]
26 || [istarget *-*-cygwin*]
27 || [istarget *-*-pe*])} {
31 # This test uses GCC-specific syntax.
32 if {![test_compiler_info "gcc-*"]} {
36 proc do_test { lib1opts lib2opts lib1first } {
39 set testfile "solib-weak"
40 set srcfile ${testfile}.c
42 set libfile1 "weaklib1"
43 set libfile2 "weaklib2"
44 set lib1src ${srcdir}/${subdir}/${libfile1}.c
45 set lib2src ${srcdir}/${subdir}/${libfile2}.c
47 # Select a unique name for this test. Give each library and
48 # executable a name reflecting its options, so that file caching
49 # on the target system does not pick up the wrong file.
51 if {$lib1opts == ""} {
52 append testopts "lib1 nodebug, "
54 append testopts "lib1 debug, "
57 if {$lib2opts == ""} {
58 append testopts "lib2 nodebug, "
60 append testopts "lib2 debug, "
64 append testopts "lib1 first"
66 append testopts "lib2 first"
67 append testfile "-lib2"
70 set binfile [standard_output_file ${testfile}]
71 set lib1 [standard_output_file ${libfile1}.sl]
72 set lib2 [standard_output_file ${libfile2}.sl]
75 set exec_opts [list debug shlib=${lib1} shlib=${lib2}]
76 set expected_file ${libfile1}
78 set exec_opts [list debug shlib=${lib2} shlib=${lib1}]
79 set expected_file ${libfile2}
82 if { [gdb_compile_shlib ${lib1src} ${lib1} ${lib1opts}] != ""
83 || [gdb_compile_shlib ${lib2src} ${lib2} ${lib2opts}] != ""
84 || [gdb_compile "${srcdir}/${subdir}/${srcfile}" ${binfile} executable $exec_opts] != ""} {
88 with_test_prefix $testopts {
91 gdb_reinitialize_dir $srcdir/$subdir
100 gdb_test "continue" "Breakpoint .* \\.?bar .*${expected_file}\\..*" \
105 foreach lib1opts {{} {debug}} {
106 foreach lib2opts {{} {debug}} {
107 foreach lib1first {1 0} {
108 do_test $lib1opts $lib2opts $lib1first