Re: ld plugin bfd_make_readable leak
[binutils-gdb.git] / gdb / testsuite / gdb.base / gdb1555.exp
bloba5b276095dc5b3b42b7abc76a5e80e511cafeb7e
1 # Copyright 2004-2024 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 require allow_shlib_tests
22 standard_testfile gdb1555-main.c gdb1555.c
24 set libfile gdb1555
25 set libsrc "${srcdir}/${subdir}/${libfile}.c"
26 set libobj [standard_output_file ${libfile}.so]
27 set execsrc "${srcdir}/${subdir}/${srcfile}"
29 remote_exec build "rm -f ${binfile}"
31 if { [gdb_compile_shlib $libsrc $libobj {debug}] != ""
32      || [gdb_compile $execsrc ${binfile} executable \
33              [list debug shlib=${libobj}]] != "" } {
34     return -1
37 clean_restart ${binfile}
38 gdb_load_shlib $libobj
40 if {![runto_main]} {
41     return 0
44 # PR/1555 (was shlib 1280)
45 set name "Step into shared lib function"
46 gdb_test_multiple "s" $name \
48     -re "hithere2 \\(\\) at.*${libfile}.c:\[0-9\]+\r\n\[0-9\]+.*a = 21;.*$gdb_prompt $"  {
49         pass $name
50     }
51     -re "0x\[0-9a-f\]+ in .* \\(\\) from /lib/ld.so.1.*$gdb_prompt $" { 
52         kfail "gdb/1555" $name 
53     }
56 # PR/1555 (was shlib 1237)
57 set name "Next while in a shared lib function"
58 gdb_test_multiple "n" $name \
60     -re "\[0-9\]+.*return a;.*$gdb_prompt $" {
61         pass $name
62     }
63     -re "Single stepping until exit from function .*, \r\nwhich has no line number information.\r\n\r\n$inferior_exited_re normally.*$gdb_prompt $" { 
64         kfail "gdb/1555" $name 
65     }