]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/solib-symbol.exp
gdb/testsuite: remove use of then keyword from gdb.base/*.exp
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / solib-symbol.exp
CommitLineData
4a94e368 1# Copyright 2007-2022 Free Software Foundation, Inc.
3a40aaa0
UW
2# This program is free software; you can redistribute it and/or modify
3# it under the terms of the GNU General Public License as published by
e22f8b7c 4# the Free Software Foundation; either version 3 of the License, or
3a40aaa0 5# (at your option) any later version.
e22f8b7c 6#
3a40aaa0
UW
7# This program is distributed in the hope that it will be useful,
8# but WITHOUT ANY WARRANTY; without even the implied warranty of
9# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10# GNU General Public License for more details.
e22f8b7c 11#
3a40aaa0 12# You should have received a copy of the GNU General Public License
e22f8b7c 13# along with this program. If not, see <http://www.gnu.org/licenses/>.
3a40aaa0
UW
14#
15# Contributed by Markus Deuling <deuling@de.ibm.com>.
16#
17
18if {[skip_shlib_tests]} {
19 return 0
20}
21
22# Library file.
23set libname "solib-symbol-lib"
24set srcfile_lib ${srcdir}/${subdir}/${libname}.c
0ab77f5f 25set binfile_lib [standard_output_file ${libname}.so]
3a40aaa0
UW
26set lib_flags [list debug ldflags=-Wl,-Bsymbolic]
27# Binary file.
28set testfile "solib-symbol-main"
29set srcfile ${srcdir}/${subdir}/${testfile}.c
0ab77f5f 30set binfile [standard_output_file ${testfile}]
3a40aaa0
UW
31set bin_flags [list debug shlib=${binfile_lib}]
32
3a40aaa0
UW
33if { [gdb_compile_shlib ${srcfile_lib} ${binfile_lib} $lib_flags] != ""
34 || [gdb_compile ${srcfile} ${binfile} executable $bin_flags] != "" } {
84c93cd5 35 untested "failed to compile"
3a40aaa0
UW
36 return -1
37}
38
39gdb_exit
40gdb_start
41gdb_reinitialize_dir $srcdir/$subdir
42gdb_load ${binfile}
d9019901 43gdb_load_shlib $binfile_lib
3a40aaa0 44
3a40aaa0
UW
45# Set a breakpoint in the binary.
46gdb_test "br foo2" \
af369495 47 "Breakpoint.*file.*${testfile}\\.c.*" \
3a40aaa0
UW
48 "foo2 in main"
49
50delete_breakpoints
51
65a33d75 52if {![runto_main]} {
f8eba3c6
TT
53 return 0
54}
55
3a40aaa0
UW
56# Break in the library.
57gdb_test "br foo" \
af369495 58 "Breakpoint.*file.*${libname}\\.c.*" \
3a40aaa0
UW
59 "foo in libmd"
60
61gdb_test "continue" \
11af934b 62 "Continuing.*"
3a40aaa0 63
f8eba3c6 64# This symbol is now looked up in the ELF library and the binary.
3a40aaa0 65gdb_test "br foo2" \
f8eba3c6 66 "Breakpoint.*: foo2. .2 locations..*" \
3a40aaa0
UW
67 "foo2 in mdlib"
68
69gdb_exit
70
71return 0
72
73