1 # Copyright
2014-2019 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 if {[skip_shlib_tests
]} {
20 standard_testfile .c symtab
-search
-order
-1.c symtab
-search
-order
-shlib
-1.c
21 set srcfile $srcdir
/$subdir
/$srcfile
22 set srcfile2 $srcdir
/$subdir
/$srcfile2
23 set lib1src $srcdir
/$subdir
/$srcfile3
24 set lib1
[standard_output_file symtab
-search
-order
-1.sl
]
27 set exec_opts
[list debug shlib
=$lib1
]
29 if [get_compiler_info
] {
33 if { [gdb_compile_shlib $lib1src $lib1 $lib_opts
] != ""
34 ||
[gdb_compile
[list $srcfile $srcfile2
] $binfile executable \
36 untested
"failed to compile"
40 # Start with a fresh gdb.
42 clean_restart $binfile
46 fail
"can't run to main"
51 # Expand something in the shared library
,
52 # and
then try to print static_global in the binary.
53 # We should
get the static_global in the binary.
54 # Note
: static_global in the binary needs to be in a file
55 # other than the one with
"main" because gdb will expand
56 # the symtab with main when starting.
58 gdb_test
"p shlib_1_func" "= .*<shlib_1_func>"
59 gdb_test
"p static_global" " = 23"