1 # Copyright
2004-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 # Test stepping into and continuing
on from a function in
17 # a shared library
(PR gdb
/1555, was PR shlib
/1280, shlib
/1237).
18 # Tested
on ppc
-yellowdog
-linux
(Yellow Dog Linux
3.0 3.2.2-2a
)
20 if {[skip_shlib_tests
]} {
24 standard_testfile gdb1555
-main.c gdb1555.c
27 set libsrc
"${srcdir}/${subdir}/${libfile}.c"
28 set libobj
[standard_output_file $
{libfile
}.so
]
29 set execsrc
"${srcdir}/${subdir}/${srcfile}"
31 remote_exec build
"rm -f ${binfile}"
33 #
get the value of gcc_compiled
34 if [get_compiler_info
] {
38 if { [gdb_compile_shlib $libsrc $libobj
{debug
}] != ""
39 ||
[gdb_compile $execsrc $
{binfile
} executable \
40 [list debug shlib
=$
{libobj
}]] != "" } {
44 clean_restart $
{binfile
}
45 gdb_load_shlib $libobj
47 if ![runto_main
] then {
48 fail
"can't run to main"
52 # PR
/1555 (was shlib
1280)
53 set name "Step into shared lib function"
54 gdb_test_multiple
"s" $name \
56 -re
"hithere2 \\(\\) at.*${libfile}.c:\[0-9\]+\r\n\[0-9\]+.*a = 21;.*$gdb_prompt $" {
59 -re
"0x\[0-9a-f\]+ in .* \\(\\) from /lib/ld.so.1.*$gdb_prompt $" {
60 kfail
"gdb/1555" $name
64 # PR
/1555 (was shlib
1237)
65 set name "Next while in a shared lib function"
66 gdb_test_multiple
"n" $name \
68 -re
"\[0-9\]+.*return a;.*$gdb_prompt $" {
71 -re
"Single stepping until exit from function .*, \r\nwhich has no line number information.\r\n\r\n$inferior_exited_re normally.*$gdb_prompt $" {
72 kfail
"gdb/1555" $name