1 # Copyright
1997, 1998, 1999, 2000, 2004 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
2 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
, write to the Free Software
15 # Foundation
, Inc.
, 59 Temple Place
- Suite
330, Boston
, MA
02111-1307, USA.
17 # Please email
any bugs
, comments
, and
/or additions to this file to
:
18 # bug
-gdb@prep.ai.mit.edu
20 # file to test calls into shared libraries
21 # the source files
for this test are
:
26 # ss.h
(header
for shr2.c
)
28 # file written by Elena Zannoni
: elz@ch.apollo.com
42 # are we
on a target board?
50 set srcfile $
{srcdir
}/$
{subdir
}/$
{testfile
}.c
51 set lib1src $
{srcdir
}/$
{subdir
}/$
{libfile1
}.c
52 set lib2src $
{srcdir
}/$
{subdir
}/$
{libfile2
}.c
53 set lib1 $
{objdir
}/$
{subdir
}/$
{libfile1
}.sl
54 set lib2 $
{objdir
}/$
{subdir
}/$
{libfile2
}.sl
55 set binfile $
{objdir
}/$
{subdir
}/$
{testfile
}
58 set exec_opts
[list debug shlib
=$
{lib1
} shlib
=$
{lib2
}]
60 if [get_compiler_info $
{binfile
}] {
64 if { [gdb_compile_shlib $
{lib1src
} $
{lib1
} $lib_opts
] != ""
65 ||
[gdb_compile_shlib $
{lib2src
} $
{lib2
} $lib_opts
] != ""
66 ||
[gdb_compile $
{srcfile
} $
{binfile
} executable $exec_opts
] != ""} {
67 untested
"Could not compile $lib1, $lib2, or $srcfile."
71 # Start with a fresh gdb.
75 gdb_reinitialize_dir $srcdir
/$subdir
77 send_gdb
"set print sevenbit-strings\n" ; gdb_expect -re "$gdb_prompt $"
78 send_gdb
"set print address off\n" ; gdb_expect -re "$gdb_prompt $"
79 send_gdb
"set width 0\n" ; gdb_expect -re "$gdb_prompt $"
82 if ![runto_main
] then {
83 perror
"C function calling tests suppressed"
91 -re
".*g = shr1\\(g\\).*$gdb_prompt $" {pass "next to shr1"}
92 -re
".*$gdb_prompt $" { fail "next to shr1" }
93 timeout
{ fail
"next to shr1 (timeout)" }
102 -re
".*\[0-9\]* = 1.*$gdb_prompt $" {
105 -re
".*$gdb_prompt $" { fail "print g" }
106 timeout
{ fail
"(timeout) print g" }
111 if ![gdb_skip_stdio_test
"next over shr1"] {
114 -re
".*address of sgs is $hex.*g = shr2\\(g\\).*$gdb_prompt $" {
115 pass
"next over shr1"
117 -re
".*$gdb_prompt $" { fail "next over shr1" }
118 timeout
{ fail
"next over shr1 (timeout)" }
121 gdb_test
"next" "" ""
128 -re
".*\[0-9\]* = 2.*$gdb_prompt $" {
130 -re
".*$gdb_prompt $" { fail "print g" }
131 timeout
{ fail
"(timeout) print g" }
135 if ![gdb_skip_stdio_test
"print shr1(1)"] {
136 send_gdb
"print shr1(1)\n"
138 -re
".*address of sgs is $hex.*\[0-9\]* = 2.*$gdb_prompt $" {
141 -re
".*$gdb_prompt $" { fail "print shr1(1)" }
142 timeout
{ fail
"(timeout) print shr1(1)" }
147 if ![gdb_skip_stdio_test
"print shr1(g)"] {
148 send_gdb
"print shr1(g)\n"
150 -re
".*address of sgs is $hex.*\[0-9\]* = 4.*$gdb_prompt $" {
153 -re
".*$gdb_prompt $" { fail "print shr1(g)" }
154 timeout
{ fail
"(timeout) print shr1(g)" }
160 gdb_test
"break shr2" \
161 "Breakpoint.*file.*shr2.c, line.*" \
162 "breakpoint function shr2"
164 gdb_test
"continue" \
165 "Continuing\\..*Breakpoint \[0-9\]+, shr2 \\(.*\\) at.*shr2\\.c:7.*7.*return 2.x;" \
166 "run until breakpoint set at a function"
170 if ![gdb_skip_stdio_test
"print shr1(1) 2nd time"] {
171 send_gdb
"print shr1(1)\n"
173 -re
".*address of sgs is $hex.*\[0-9\]* = 2.*$gdb_prompt $" {
174 pass
"print shr1(1) 2nd time"
176 -re
".*$gdb_prompt $" { fail "print shr1(1) 2nd time" }
177 timeout
{ fail
"(timeout) print shr1(1) 2nd time" }
182 send_gdb
"print mainshr1(1)\n"
184 -re
".*\[0-9\]* = 2.*$gdb_prompt $" {
185 pass
"print mainshr1(1) from shlib func"
187 -re
".*$gdb_prompt $" { fail "print mainshr1(1) from shlib func" }
188 timeout
{ fail
"(timeout) print mainshr1(1) from shlib func" }
193 # A step at this point will either take us entirely out of
194 # the function or into the function
's epilogue. The exact
195 # behavior will differ depending upon upon whether or not
196 # the compiler emits line number information for the epilogue.
198 -re "main \\(\\) at.*g = mainshr1\\(g\\);.*$gdb_prompt $" {
199 pass "step out of shr2 to main"
201 -re ".*\\\}.*$gdb_prompt $" {
202 pass "step out of shr2 to main (stopped in shr2 epilogue)"
205 -re "main \\(\\) at.*g = mainshr1\\(g\\);.*$gdb_prompt $" { pass "step out of shr2 epilogue to main"}
206 -re ".*$gdb_prompt $" { fail "step out of shr2 epilogue to main" }
207 timeout { fail "step out of shr2 epilogue to main (timeout)" }
210 -re ".*$gdb_prompt $" { fail "step out of shr2" }
211 timeout { fail "step out of shr2 to main (timeout)" }
216 send_gdb "print mainshr1(1)\n"
218 -re ".*\[0-9\]* = 2.*$gdb_prompt $" {
219 pass "print mainshr1(1)"
221 -re ".*$gdb_prompt $" { fail "print mainshr1(1) from main" }
222 timeout { fail "(timeout) print mainshr1(1) from main" }
228 -re ".*mainshr1 \\(g=4\\) at.*return 2.g;.*$gdb_prompt $" { pass "step into mainshr1"}
229 -re ".*$gdb_prompt $" { fail "step into mainshr1" }
230 timeout { fail "step into mainshr1 (timeout)" }
233 # Start with a fresh gdb.
237 gdb_reinitialize_dir $srcdir/$subdir
239 send_gdb "set print sevenbit-strings\n" ; gdb_expect -re "$gdb_prompt $"
240 send_gdb "set print address off\n" ; gdb_expect -re "$gdb_prompt $"
241 send_gdb "set width 0\n" ; gdb_expect -re "$gdb_prompt $"
244 # test that we can re
-set breakpoints in shared libraries
245 gdb_breakpoint
"shr1" "allow-pending"
247 # FIXME
: should not send
"run" explicitly. Non-portable.
249 if ![is_remote target
] {
250 gdb_test
"run" "Starting program:.*Breakpoint .,.*" \
251 "run to bp in shared library"
253 gdb_test
"cont" ".*Program exited normally..*"
255 gdb_test
"run" "Starting program:.*Breakpoint .,.*" \
256 "re-run to bp in shared library (PR's 16495, 18213)"
258 gdb_test
"cont" ".*Program exited normally..*"