1 # Copyright 1997, 1999, 2007, 2008, 2009 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 { [is_remote target] || ![isnative] } then {
24 set testfile "foll-fork"
25 set srcfile ${testfile}.c
26 set binfile ${objdir}/${subdir}/${testfile}
28 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
29 untested foll-fork.exp
35 # Until "set follow-fork-mode" and "catch fork" are implemented on
38 if {![istarget "hppa*-hp-hpux*"] && ![istarget "*-linux*"]} then {
42 proc check_fork_catchpoints {} {
45 # Verify that the system supports "catch fork".
46 gdb_test "catch fork" "Catchpoint \[0-9\]* \\(fork\\)" "insert first fork catchpoint"
47 set has_fork_catchpoints 0
48 gdb_test_multiple "continue" "continue to first fork catchpoint" {
49 -re ".*Your system does not support fork catchpoints.*$gdb_prompt $" {
50 unsupported "continue to first fork catchpoint"
52 -re ".*Catchpoint.*$gdb_prompt $" {
53 set has_fork_catchpoints 1
54 pass "continue to first fork catchpoint"
58 if {$has_fork_catchpoints == 0} {
59 unsupported "fork catchpoints"
64 proc default_fork_parent_follow {} {
67 send_gdb "show follow\n"
69 -re "Debugger response to a program call of fork or vfork is \"parent\"..*$gdb_prompt $"\
70 {pass "default show parent follow, no catchpoints"}
71 -re "$gdb_prompt $" {fail "default show parent follow, no catchpoints"}
72 timeout {fail "(timeout) default show parent follow, no catchpoints"}
76 -re "Detaching after fork from.*$gdb_prompt $"\
77 {pass "default parent follow, no catchpoints"}
78 -re "$gdb_prompt $" {fail "default parent follow, no catchpoints"}
79 timeout {fail "(timeout) default parent follow, no catchpoints" }
81 # The child has been detached; allow time for any output it might
82 # generate to arrive, so that output doesn't get confused with
83 # any expected debugger output from a subsequent testpoint.
88 proc explicit_fork_parent_follow {} {
91 send_gdb "set follow parent\n"
93 -re "$gdb_prompt $" {pass "set follow parent"}
94 timeout {fail "(timeout) set follow parent"}
96 send_gdb "show follow\n"
98 -re "Debugger response to a program call of fork or vfork is \"parent\"..*$gdb_prompt $"\
99 {pass "explicit show parent follow, no catchpoints"}
100 -re "$gdb_prompt $" {fail "explicit show parent follow, no catchpoints"}
101 timeout {fail "(timeout) explicit show parent follow, no catchpoints"}
105 -re "Detaching after fork from.*$gdb_prompt $"\
106 {pass "explicit parent follow, no catchpoints"}
107 -re "$gdb_prompt $" {fail "explicit parent follow, no catchpoints"}
108 timeout {fail "(timeout) explicit parent follow, no catchpoints"}
110 # The child has been detached; allow time for any output it might
111 # generate to arrive, so that output doesn't get confused with
112 # any expected debugger output from a subsequent testpoint.
117 proc explicit_fork_child_follow {} {
120 send_gdb "set follow child\n"
122 -re "$gdb_prompt $" {pass "set follow child"}
123 timeout {fail "(timeout) set follow child"}
125 send_gdb "show follow\n"
127 -re "Debugger response to a program call of fork or vfork is \"child\"..*$gdb_prompt $"\
128 {pass "explicit show child follow, no catchpoints"}
129 -re "$gdb_prompt $" {fail "explicit show child follow, no catchpoints"}
130 timeout {fail "(timeout) explicit show child follow, no catchpoints"}
134 -re "Attaching after fork to.*$gdb_prompt $"\
135 {pass "explicit child follow, no catchpoints"}
136 -re "$gdb_prompt $" {fail "explicit child follow, no catchpoints"}
137 timeout {fail "(timeout) explicit child follow, no catchpoints"}
139 # The child has been detached; allow time for any output it might
140 # generate to arrive, so that output doesn't get confused with
141 # any gdb_expected debugger output from a subsequent testpoint.
146 proc catch_fork_child_follow {} {
150 send_gdb "catch fork\n"
152 -re "Catchpoint .*(fork).*$gdb_prompt $"\
153 {pass "explicit child follow, set catch fork"}
154 -re "$gdb_prompt $" {fail "explicit child follow, set catch fork"}
155 timeout {fail "(timeout) explicit child follow, set catch fork"}
158 # Verify that the catchpoint is mentioned in an "info breakpoints",
159 # and further that the catchpoint mentions no process id.
161 set test_name "info shows catchpoint without pid"
162 gdb_test_multiple "info breakpoints" "$test_name" {
163 -re ".*catchpoint.*keep y.*fork\[\r\n\]+$gdb_prompt $" {
168 send_gdb "continue\n"
170 -re "Catchpoint.*(forked process.*),.*in .*(fork|__kernel_v?syscall).*$gdb_prompt $"\
171 {pass "explicit child follow, catch fork"}
172 -re "$gdb_prompt $" {fail "explicit child follow, catch fork"}
173 timeout {fail "(timeout) explicit child follow, catch fork"}
176 # Verify that the catchpoint is mentioned in an "info breakpoints",
177 # and further that the catchpoint managed to capture a process id.
179 set test_name "info shows catchpoint without pid"
180 gdb_test_multiple "info breakpoints" "$test_name" {
181 -re ".*catchpoint.*keep y.*fork, process.*$gdb_prompt $" {
186 send_gdb "set follow child\n"
188 -re "$gdb_prompt $" {pass "set follow child"}
189 timeout {fail "(timeout) set follow child"}
191 send_gdb "tbreak ${srcfile}:24\n"
193 -re "Temporary breakpoint.*, line 24.*$gdb_prompt $"\
194 {pass "set follow child, tbreak"}
195 -re "$gdb_prompt $" {fail "set follow child, tbreak"}
196 timeout {fail "(timeout) set follow child, tbreak"}
198 send_gdb "continue\n"
200 -re "Attaching after fork to.* at .*24.*$gdb_prompt $"\
201 {pass "set follow child, hit tbreak"}
202 -re "$gdb_prompt $" {fail "set follow child, hit tbreak"}
203 timeout {fail "(timeout) set follow child, hit tbreak"}
205 # The child has been detached; allow time for any output it might
206 # generate to arrive, so that output doesn't get confused with
207 # any expected debugger output from a subsequent testpoint.
210 send_gdb "delete breakpoints\n"
212 -re "Delete all breakpoints.*$" {
216 {pass "set follow child, cleanup"}
217 timeout {fail "(timeout) set follow child, cleanup"}
220 -re "$gdb_prompt $" {fail "set follow child, cleanup"}
221 timeout {fail "(timeout) set follow child, cleanup"}
225 proc tcatch_fork_parent_follow {} {
229 send_gdb "catch fork\n"
231 -re "Catchpoint .*(fork).*$gdb_prompt $"\
232 {pass "explicit parent follow, set tcatch fork"}
233 -re "$gdb_prompt $" {fail "explicit parent follow, set tcatch fork"}
234 timeout {fail "(timeout) explicit parent follow, set tcatch fork"}
236 # ??rehrauer: I don't yet know how to get the id of the tcatch
237 # via this script, so that I can add a -do list to it. For now,
238 # do the follow stuff after the catch happens.
240 send_gdb "continue\n"
242 -re ".*in .*(fork|__kernel_v?syscall).*$gdb_prompt $"\
243 {pass "explicit parent follow, tcatch fork"}
244 -re "$gdb_prompt $" {fail "explicit parent follow, tcatch fork"}
245 timeout {fail "(timeout) explicit parent follow, tcatch fork"}
247 send_gdb "set follow parent\n"
249 -re "$gdb_prompt $" {pass "set follow parent"}
250 timeout {fail "(timeout) set follow parent"}
252 send_gdb "tbreak ${srcfile}:24\n"
254 -re "Temporary breakpoint.*, line 24.*$gdb_prompt $"\
255 {pass "set follow parent, tbreak"}
256 -re "$gdb_prompt $" {fail "set follow parent, tbreak"}
257 timeout {fail "(timeout) set follow child, tbreak"}
259 send_gdb "continue\n"
261 -re ".*Detaching after fork from.* at .*24.*$gdb_prompt $"\
262 {pass "set follow parent, hit tbreak"}
263 -re "$gdb_prompt $" {fail "set follow parent, hit tbreak"}
264 timeout {fail "(timeout) set follow parent, hit tbreak"}
266 # The child has been detached; allow time for any output it might
267 # generate to arrive, so that output doesn't get confused with
268 # any expected debugger output from a subsequent testpoint.
271 send_gdb "delete breakpoints\n"
273 -re "Delete all breakpoints.*$" {
277 {pass "set follow parent, cleanup"}
278 timeout {fail "(timeout) set follow parent, cleanup"}
281 -re "$gdb_prompt $" {fail "set follow parent, cleanup"}
282 timeout {fail "(timeout) set follow parent, cleanup"}
286 proc do_fork_tests {} {
289 # Verify that help is available for "set follow-fork-mode".
291 send_gdb "help set follow-fork-mode\n"
293 -re "Set debugger response to a program call of fork or vfork..*
294 A fork or vfork creates a new process. follow-fork-mode can be:.*
295 .*parent - the original process is debugged after a fork.*
296 .*child - the new process is debugged after a fork.*
297 The unfollowed process will continue to run..*
298 By default, the debugger will follow the parent process..*$gdb_prompt $"\
299 { pass "help set follow" }
300 -re "$gdb_prompt $" { fail "help set follow" }
301 timeout { fail "(timeout) help set follow" }
304 # Verify that we can set follow-fork-mode, using an abbreviation
305 # for both the flag and its value.
307 send_gdb "set follow ch\n"
308 send_gdb "show fol\n"
310 -re "Debugger response to a program call of fork or vfork is \"child\".*$gdb_prompt $"\
311 {pass "set follow, using abbreviations"}
312 timeout {fail "(timeout) set follow, using abbreviations"}
315 # Verify that we cannot set follow-fork-mode to nonsense.
317 send_gdb "set follow chork\n"
319 -re "Undefined item: \"chork\".*$gdb_prompt $"\
320 {pass "set follow to nonsense is prohibited"}
321 -re "$gdb_prompt $" {fail "set follow to nonsense is prohibited"}
322 timeout {fail "(timeout) set follow to nonsense is prohibited"}
324 send_gdb "set follow parent\n"
326 -re "$gdb_prompt $" {pass "set follow to nonsense is prohibited (reset parent)"}
327 timeout {fail "set follow to nonsense is prohibited (reset parent)"}
330 # Check that fork catchpoints are supported, as an indicator for whether
331 # fork-following is supported.
332 if [runto_main] then { check_fork_catchpoints }
334 # Test the default behaviour, which is to follow the parent of a
335 # fork, and detach from the child. Do this without catchpoints.
337 if [runto_main] then { default_fork_parent_follow }
339 # Test the ability to explicitly follow the parent of a fork, and
340 # detach from the child. Do this without catchpoints.
342 if [runto_main] then { explicit_fork_parent_follow }
344 # Test the ability to follow the child of a fork, and detach from
345 # the parent. Do this without catchpoints.
347 if [runto_main] then { explicit_fork_child_follow }
349 # Test the ability to follow both child and parent of a fork. Do
350 # this without catchpoints.
351 # ??rehrauer: NYI. Will add testpoints here when implemented.
354 # Test the ability to have the debugger ask the user at fork-time
355 # whether to follow the parent, child or both. Do this without
357 # ??rehrauer: NYI. Will add testpoints here when implemented.
360 # Test the ability to catch a fork, specify that the child be
361 # followed, and continue. Make the catchpoint permanent.
363 if [runto_main] then { catch_fork_child_follow }
365 # Test the ability to catch a fork, specify via a -do clause that
366 # the parent be followed, and continue. Make the catchpoint temporary.
368 if [runto_main] then { tcatch_fork_parent_follow }
371 # Start with a fresh gdb
375 gdb_reinitialize_dir $srcdir/$subdir
378 # The "Detaching..." and "Attaching..." messages may be hidden by
380 gdb_test "set verbose" ""
382 # This is a test of gdb's ability to follow the parent, child or both
383 # parent and child of a Unix fork() system call.