1 # Copyright 1997, 1999, 2007 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
24 if { ![isnative] } then {
31 set testfile "foll-fork"
32 set srcfile ${testfile}.c
33 set binfile ${objdir}/${subdir}/${testfile}
35 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
36 untested foll-fork.exp
42 # Until "set follow-fork-mode" and "catch fork" are implemented on
45 if ![istarget "hppa*-hp-hpux*"] then {
49 proc default_fork_parent_follow {} {
52 send_gdb "show follow\n"
54 -re "Debugger response to a program call of fork or vfork is \"parent\"..*$gdb_prompt $"\
55 {pass "default show parent follow, no catchpoints"}
56 -re "$gdb_prompt $" {fail "default show parent follow, no catchpoints"}
57 timeout {fail "(timeout) default show parent follow, no catchpoints"}
61 -re "Detaching after fork from.*$gdb_prompt $"\
62 {pass "default parent follow, no catchpoints"}
63 -re "$gdb_prompt $" {fail "default parent follow, no catchpoints"}
64 timeout {fail "(timeout) default parent follow, no catchpoints" }
66 # The child has been detached; allow time for any output it might
67 # generate to arrive, so that output doesn't get confused with
68 # any expected debugger output from a subsequent testpoint.
73 proc explicit_fork_parent_follow {} {
76 send_gdb "set follow parent\n"
78 -re "$gdb_prompt $" {pass "set follow parent"}
79 timeout {fail "(timeout) set follow parent"}
81 send_gdb "show follow\n"
83 -re "Debugger response to a program call of fork or vfork is \"parent\"..*$gdb_prompt $"\
84 {pass "explicit show parent follow, no catchpoints"}
85 -re "$gdb_prompt $" {fail "explicit show parent follow, no catchpoints"}
86 timeout {fail "(timeout) explicit show parent follow, no catchpoints"}
90 -re "Detaching after fork from.*$gdb_prompt $"\
91 {pass "explicit parent follow, no catchpoints"}
92 -re "$gdb_prompt $" {fail "explicit parent follow, no catchpoints"}
93 timeout {fail "(timeout) explicit parent follow, no catchpoints"}
95 # The child has been detached; allow time for any output it might
96 # generate to arrive, so that output doesn't get confused with
97 # any expected debugger output from a subsequent testpoint.
102 proc explicit_fork_child_follow {} {
105 send_gdb "set follow child\n"
107 -re "$gdb_prompt $" {pass "set follow child"}
108 timeout {fail "(timeout) set follow child"}
110 send_gdb "show follow\n"
112 -re "Debugger response to a program call of fork or vfork is \"child\"..*$gdb_prompt $"\
113 {pass "explicit show child follow, no catchpoints"}
114 -re "$gdb_prompt $" {fail "explicit show child follow, no catchpoints"}
115 timeout {fail "(timeout) explicit show child follow, no catchpoints"}
119 -re "Detaching from program:.*Attaching after fork to.*$gdb_prompt $"\
120 {pass "explicit child follow, no catchpoints"}
121 -re "$gdb_prompt $" {fail "explicit child follow, no catchpoints"}
122 timeout {fail "(timeout) explicit child follow, no catchpoints"}
124 # The child has been detached; allow time for any output it might
125 # generate to arrive, so that output doesn't get confused with
126 # any gdb_expected debugger output from a subsequent testpoint.
131 proc catch_fork_child_follow {} {
134 send_gdb "catch fork\n"
136 -re "Catchpoint .*(fork).*$gdb_prompt $"\
137 {pass "explicit child follow, set catch fork"}
138 -re "$gdb_prompt $" {fail "explicit child follow, set catch fork"}
139 timeout {fail "(timeout) explicit child follow, set catch fork"}
142 # Verify that the catchpoint is mentioned in an "info breakpoints",
143 # and further that the catchpoint mentions no process id.
145 send_gdb "info breakpoints\n"
147 -re ".*catch fork.*keep y.*$gdb_prompt $"\
148 {pass "info shows catchpoint without pid"}
149 -re ".*catch fork.*process .*$gdb_prompt $"\
150 {fail "info shows catchpoint without pid"}
151 -re "$gdb_prompt $" {fail "info shows catchpoint without pid"}
152 timeout {fail "(timeout) info shows catchpoint without pid"}
155 send_gdb "continue\n"
157 -re "Catchpoint.*(forked process.*),.*in _fork_sys.*$gdb_prompt $"\
158 {pass "explicit child follow, catch fork"}
159 -re "$gdb_prompt $" {fail "explicit child follow, catch fork"}
160 timeout {fail "(timeout) explicit child follow, catch fork"}
163 # Verify that the catchpoint is mentioned in an "info breakpoints",
164 # and further that the catchpoint managed to capture a process id.
166 send_gdb "info breakpoints\n"
168 -re ".*catch fork .*process \[0-9\]+.*$gdb_prompt $"\
169 {pass "info shows catchpoint pid"}
170 -re "$gdb_prompt $" {fail "info shows catchpoint pid"}
171 timeout {fail "(timeout) info shows catchpoint pid"}
174 send_gdb "set follow child\n"
176 -re "$gdb_prompt $" {pass "set follow child"}
177 timeout {fail "(timeout) set follow child"}
179 send_gdb "tbreak 24\n"
181 -re "Breakpoint.*, line 24.*$gdb_prompt $"\
182 {pass "set follow child, tbreak"}
183 -re "$gdb_prompt $" {fail "set follow child, tbreak"}
184 timeout {fail "(timeout) set follow child, tbreak"}
186 send_gdb "continue\n"
188 -re ".*Detaching from program:.*Attaching after fork to.* at .*24.*$gdb_prompt $"\
189 {pass "set follow child, hit tbreak"}
190 -re "$gdb_prompt $" {fail "set follow child, hit tbreak"}
191 timeout {fail "(timeout) set follow child, hit tbreak"}
193 # The child has been detached; allow time for any output it might
194 # generate to arrive, so that output doesn't get confused with
195 # any expected debugger output from a subsequent testpoint.
198 send_gdb "delete breakpoints\n"
200 -re "Delete all breakpoints.*$" {
204 {pass "set follow child, cleanup"}
205 timeout {fail "(timeout) set follow child, cleanup"}
208 -re "$gdb_prompt $" {fail "set follow child, cleanup"}
209 timeout {fail "(timeout) set follow child, cleanup"}
213 proc tcatch_fork_parent_follow {} {
216 send_gdb "catch fork\n"
218 -re "Catchpoint .*(fork).*$gdb_prompt $"\
219 {pass "explicit parent follow, set tcatch fork"}
220 -re "$gdb_prompt $" {fail "explicit parent follow, set tcatch fork"}
221 timeout {fail "(timeout) explicit parent follow, set tcatch fork"}
223 # ??rehrauer: I don't yet know how to get the id of the tcatch
224 # via this script, so that I can add a -do list to it. For now,
225 # do the follow stuff after the catch happens.
227 send_gdb "continue\n"
229 -re ".*in _fork_sys.*$gdb_prompt $"\
230 {pass "explicit parent follow, tcatch fork"}
231 -re "$gdb_prompt $" {fail "explicit parent follow, tcatch fork"}
232 timeout {fail "(timeout) explicit parent follow, tcatch fork"}
234 send_gdb "set follow parent\n"
236 -re "$gdb_prompt $" {pass "set follow parent"}
237 timeout {fail "(timeout) set follow parent"}
239 send_gdb "tbreak 24\n"
241 -re "Breakpoint.*, line 24.*$gdb_prompt $"\
242 {pass "set follow parent, tbreak"}
243 -re "$gdb_prompt $" {fail "set follow parent, tbreak"}
244 timeout {fail "(timeout) set follow child, tbreak"}
246 send_gdb "continue\n"
248 -re ".*Detaching after fork from.* at .*24.*$gdb_prompt $"\
249 {pass "set follow parent, hit tbreak"}
250 -re "$gdb_prompt $" {fail "set follow parent, hit tbreak"}
251 timeout {fail "(timeout) set follow parent, hit tbreak"}
253 # The child has been detached; allow time for any output it might
254 # generate to arrive, so that output doesn't get confused with
255 # any expected debugger output from a subsequent testpoint.
258 send_gdb "delete breakpoints\n"
260 -re "Delete all breakpoints.*$" {
264 {pass "set follow parent, cleanup"}
265 timeout {fail "(timeout) set follow parent, cleanup"}
268 -re "$gdb_prompt $" {fail "set follow parent, cleanup"}
269 timeout {fail "(timeout) set follow parent, cleanup"}
273 proc do_fork_tests {} {
276 # Verify that help is available for "set follow-fork-mode".
278 send_gdb "help set follow-fork-mode\n"
280 -re "Set debugger response to a program call of fork or vfork..*
281 A fork or vfork creates a new process. follow-fork-mode can be:.*
282 .*parent - the original process is debugged after a fork.*
283 .*child - the new process is debugged after a fork.*
284 The unfollowed process will continue to run..*
285 By default, the debugger will follow the parent process..*$gdb_prompt $"\
286 { pass "help set follow" }
287 -re "$gdb_prompt $" { fail "help set follow" }
288 timeout { fail "(timeout) help set follow" }
291 # Verify that we can set follow-fork-mode, using an abbreviation
292 # for both the flag and its value.
294 send_gdb "set follow ch\n"
295 send_gdb "show fol\n"
297 -re "Debugger response to a program call of fork or vfork is \"child\".*$gdb_prompt $"\
298 {pass "set follow, using abbreviations"}
299 timeout {fail "(timeout) set follow, using abbreviations"}
302 # Verify that we cannot set follow-fork-mode to nonsense.
304 send_gdb "set follow chork\n"
306 -re "Undefined item: \"chork\".*$gdb_prompt $"\
307 {pass "set follow to nonsense is prohibited"}
308 -re "$gdb_prompt $" {fail "set follow to nonsense is prohibited"}
309 timeout {fail "(timeout) set follow to nonsense is prohibited"}
311 send_gdb "set follow parent\n"
313 -re "$gdb_prompt $" {pass "set follow to nonsense is prohibited (reset parent)"}
314 timeout {fail "set follow to nonsense is prohibited (reset parent)"}
317 # Test the default behaviour, which is to follow the parent of a
318 # fork, and detach from the child. Do this without catchpoints.
320 if [runto_main] then { default_fork_parent_follow }
322 # Test the ability to explicitly follow the parent of a fork, and
323 # detach from the child. Do this without catchpoints.
325 if [runto_main] then { explicit_fork_parent_follow }
327 # Test the ability to follow the child of a fork, and detach from
328 # the parent. Do this without catchpoints.
330 if [runto_main] then { explicit_fork_child_follow }
332 # Test the ability to follow both child and parent of a fork. Do
333 # this without catchpoints.
334 # ??rehrauer: NYI. Will add testpoints here when implemented.
337 # Test the ability to have the debugger ask the user at fork-time
338 # whether to follow the parent, child or both. Do this without
340 # ??rehrauer: NYI. Will add testpoints here when implemented.
343 # Test the ability to catch a fork, specify that the child be
344 # followed, and continue. Make the catchpoint permanent.
346 if [runto_main] then { catch_fork_child_follow }
348 # Test the ability to catch a fork, specify via a -do clause that
349 # the parent be followed, and continue. Make the catchpoint temporary.
351 if [runto_main] then { tcatch_fork_parent_follow }
354 # Start with a fresh gdb
358 gdb_reinitialize_dir $srcdir/$subdir
362 # This is a test of gdb's ability to follow the parent, child or both
363 # parent and child of a Unix fork() system call.