Imported Upstream version 7.9
[platform/upstream/gdb.git] / gdb / testsuite / gdb.base / multi-forks.exp
1 #   Copyright 2005-2015 Free Software Foundation, Inc.
2
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.
7 #
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.
12 #
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/>.
15
16 if { [is_remote target] || ![isnative] } then {
17     continue
18 }
19
20 # Until "set follow-fork-mode" and "catch fork" are implemented on
21 # other targets...
22 #
23 if {![istarget "hppa*-hp-hpux*"] && ![istarget "*-*-linux*"]} then {
24     continue
25 }
26
27
28 standard_testfile .c
29
30 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
31      untested multi-forks.exp
32      return -1
33 }
34
35 # Start with a fresh gdb
36
37 clean_restart ${binfile}
38
39 global gdb_prompt
40
41 # This is a test of gdb's ability to follow the parent, child or both
42 # parent and child of multiple Unix fork() system calls.
43
44 set exit_bp_loc [gdb_get_line_number "Set exit breakpoint here."]
45
46 # Insert a breakpoint at the location provided by the exit_bp_loc global
47 # and resume the execution until hitting that breakpoint.  We also make
48 # sure to consume all the expected output from all processes as well,
49 # to make sure it doesn't cause trouble during a subsequent test.
50
51 proc continue_to_exit_bp_loc {} {
52     global exit_bp_loc decimal gdb_prompt
53
54     gdb_breakpoint $exit_bp_loc
55
56     send_gdb "continue\n"
57
58     # The output from the child processes can be interleaved arbitrarily
59     # with the output from GDB and the parent process.  If we don't
60     # consume it all now, it can confuse later interactions.
61     set seen_done 0
62     set seen_break 0
63     set seen_prompt 0
64     set seen_timeout 0
65     while { ($seen_done < 16 || ! $seen_prompt) && ! $seen_timeout } {
66         # We don't know what order the interesting things will arrive in.
67         # Using a pattern of the form 'x|y|z' instead of -re x ... -re y
68         # ... -re z ensures that expect always chooses the match that
69         # occurs leftmost in the input, and not the pattern appearing
70         # first in the script that occurs anywhere in the input, so that
71         # we don't skip anything.
72         gdb_expect {
73             -re "($decimal done)|(Breakpoint)|($gdb_prompt)" {
74                 if {[info exists expect_out(1,string)]} {
75                     incr seen_done
76                 } elseif {[info exists expect_out(2,string)]} {
77                     set seen_break 1
78                 } elseif {[info exists expect_out(3,string)]} {
79                     set seen_prompt 1
80                 }
81                 array unset expect_out
82             }
83             timeout { set seen_timeout 1 }
84         }
85     }
86
87     if { $seen_timeout } {
88         fail "run to exit 2 (timeout)"
89     } elseif { ! $seen_prompt } {
90         fail "run to exit 2 (no prompt)"
91     } elseif { ! $seen_break } {
92         fail "run to exit 2 (no breakpoint hit)"
93     } elseif { $seen_done != 16 } {
94         fail "run to exit 2 (missing done messages)"
95     } else {
96         pass "run to exit 2"
97     }
98 }
99
100 # The inferior program builds a tree of processes by executing a loop
101 # four times, calling fork at each iteration.  Thus, at each
102 # iteration, the total number of processes doubles; after four
103 # iterations, we have 16 processes.  Each process saves the results
104 # from its 'fork' calls, so we can tell which leaf a given process is
105 # by looking at which forks returned zero and which returned a pid: a
106 # zero means to take the child's branch; a pid means to take the
107 # parent's branch.
108
109 # First set gdb to follow the child.
110 # The result should be that each of the 4 forks returns zero.
111
112 runto_main
113 gdb_test_no_output "set follow-fork child"
114 continue_to_exit_bp_loc
115
116 gdb_test "print pids" "\\$.* = \\{0, 0, 0, 0\\}.*" "follow child, print pids"
117
118 # Now set gdb to follow the parent.
119 # Result should be that none of the 4 forks returns zero.
120
121 runto_main
122 gdb_test_no_output "set follow-fork parent" ""
123 continue_to_exit_bp_loc
124
125 gdb_test "print pids\[0\]==0 || pids\[1\]==0 || pids\[2\]==0 || pids\[3\]==0" \
126     " = 0" "follow parent, print pids"
127
128 #
129 # Now test with detach-on-fork off.
130 #
131
132 # detach-on-fork isn't implemented on hpux.
133 #
134 if {![istarget "*-*-linux*"]} then {
135     continue
136 }
137
138 # Start with a fresh gdb
139
140 clean_restart ${binfile}
141
142 runto_main
143 gdb_breakpoint $exit_bp_loc
144
145 gdb_test "help set detach-on-fork" "whether gdb will detach the child.*" \
146     "help set detach"
147
148 gdb_test "show detach-on-fork" "on." "show detach default on"
149
150 gdb_test_no_output "set detach off" "set detach off"
151
152 #
153 # We will now run every fork up to the exit bp, 
154 # eventually winding up with 16 inferiors.
155 #
156
157 for {set i 1} {$i <= 15} {incr i} {
158   gdb_test "continue" "Breakpoint .* main .*exit.*" "Run to exit $i"
159   gdb_test "info inferior" " 5 .* 4 .* 3 .* 2 .*" "info inferior $i"
160   gdb_test "inferior $i + 1" "(_dl_sysinfo_int80|fork|__kernel_(v|)syscall).*" \
161       "inferior $i"
162 }
163
164 gdb_test "continue" "Breakpoint .* main .*exit.*" "Run to exit 16"
165 gdb_test "info inferiors" " 5 .* 4 .* 3 .* 2 .*" "info inferior 16"
166 gdb_test "inferior 2" " main .*" "restart final"
167
168 #
169 # Now we should examine all the pids.
170 #
171
172
173 # Test detach inferior
174
175
176 # [assumes we're at #1]
177 gdb_test "detach inferior 2" "Detaching .*" "Detach 2"
178 gdb_test "detach inferior 3" "Detaching .*" "Detach 3"
179 gdb_test "detach inferior 4" "Detaching .*" "Detach 4"
180 gdb_test "detach inferior 5" "Detaching .*" "Detach 5"
181
182
183 # Test kill inferior
184 #
185
186 gdb_test_no_output "kill inferior 6" "Kill 6"
187 gdb_test "info inferior 6" "<null>.*" "Did kill 6"
188 gdb_test_no_output "kill inferior 7" "Kill 7"
189 gdb_test "info inferior 7" "<null>.*" "Did kill 7"
190 gdb_test_no_output "kill inferior 8" "Kill 8"
191 gdb_test "info inferior 8" "<null>.*" "Did kill 8"
192 gdb_test_no_output "kill inferior 9" "Kill 9"
193 gdb_test "info inferior 9" "<null>.*" "Did kill 9"
194 gdb_test_no_output "kill inferior 10" "Kill 10"
195 gdb_test "info inferior 10" "<null>.*" "Did kill 10"
196 gdb_test_no_output "kill inferior 11" "Kill 11"
197 gdb_test "info inferior 11" "<null>.*" "Did kill 11"
198 gdb_test_no_output "kill inferior 12" "Kill 12"
199 gdb_test "info inferior 12" "<null>.*" "Did kill 12"
200 gdb_test_no_output "kill inferior 13" "Kill 13"
201 gdb_test "info inferior 13" "<null>.*" "Did kill 13"
202 gdb_test_no_output "kill inferior 14" "Kill 14"
203 gdb_test "info inferior 14" "<null>.*" "Did kill 14"
204 gdb_test_no_output "kill inferior 15" "Kill 15"
205 gdb_test "info inferior 15" "<null>.*" "Did kill 15"
206 gdb_test_no_output "kill inferior 16" "Kill 16"
207 gdb_test "info inferior 16" "<null>.*" "Did kill 16"
208
209 return 0