* linux-nat.c (count_events_callback, select_event_lwp_callback): Only
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.threads / schedlock.exp
CommitLineData
9b254dd1
DJ
1# Copyright (C) 1996, 1997, 2002, 2003, 2007, 2008
2# Free Software Foundation, Inc.
0312286c
DJ
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
0312286c 7# (at your option) any later version.
e22f8b7c 8#
0312286c
DJ
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
0312286c 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
0312286c
DJ
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20# This file was written by Daniel Jacobowitz <drow@mvista.com>
21# (parts based on pthreads.exp by Fred Fish (fnf@cygnus.com).
22#
23# This test covers the various forms of "set scheduler-locking".
24
25if $tracelevel then {
26 strace $tracelevel
27}
28
29set prms_id 0
30set bug_id 0
31
32set testfile "schedlock"
33set srcfile ${testfile}.c
34set binfile ${objdir}/${subdir}/${testfile}
35
18ecae38
DJ
36# The number of threads, including the main thread.
37set NUM 2
38
b5ab8ff3 39if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
0312286c
DJ
40 return -1
41}
42
43# Now we can proceed with the real testing.
44
45proc get_args { } {
46 global list_count
47 global gdb_prompt
e09490f1
DJ
48 global NUM
49
50 set pattern "(\[0-9\]+)"
51 for {set i 1} {[expr $i < $NUM]} {incr i} {
52 append pattern ", (\[0-9\]+)"
53 }
0312286c
DJ
54
55 send_gdb "print args\n"
56 gdb_expect {
e09490f1 57 -re "\\\$\[0-9\]+ = {$pattern}.*$gdb_prompt"
0312286c
DJ
58 {
59 set list_count [expr $list_count + 1]
60 pass "listed args ($list_count)"
e09490f1
DJ
61
62 set result ""
63 for {set i 1} {[expr $i <= $NUM]} {incr i} {
64 lappend result $expect_out($i,string)
65 }
66 return $result
0312286c
DJ
67 }
68 -re "$gdb_prompt"
69 {
70 fail "listed args ($list_count) (unknown output)"
71 }
72 timeout
73 {
74 fail "listed args ($list_count) (timeout)"
75 }
76 }
77}
78
79proc stop_process { description } {
80 global gdb_prompt
81
82 # For this to work we must be sure to consume the "Continuing."
83 # message first, or GDB's signal handler may not be in place.
84 after 1000 {send_gdb "\003"}
85 gdb_expect {
86 -re "Program received signal SIGINT.*$gdb_prompt $"
87 {
88 pass $description
89 }
90 timeout
91 {
92 fail "$description (timeout)"
93 }
94 }
95}
96
97proc get_current_thread { description } {
98 global gdb_prompt
99
100 send_gdb "bt\n"
101 gdb_expect {
102 -re "thread_function \\(arg=0x(\[0-9\])\\).*$gdb_prompt $"
103 {
104 pass $description
105 return $expect_out(1,string)
106 }
107 -re "$gdb_prompt $"
108 {
109 fail "$description (unknown output)"
110 }
111 timeout
112 {
113 fail "$description (timeout)"
114 }
115 }
116}
117
118proc my_continue { msg } {
119 send_gdb "continue\n"
120 gdb_expect {
121 -re "Continuing"
122 { pass "continue ($msg)" }
123 timeout
124 { fail "continue ($msg) (timeout)" }
125 }
126
127 stop_process "stop all threads ($msg)"
128
a25fbfec 129 # Make sure we're in one of the non-main looping threads.
18ecae38 130 gdb_breakpoint [concat [gdb_get_line_number "schedlock.exp: main loop"] " if arg != 0"]
0312286c
DJ
131 gdb_continue_to_breakpoint "return to loop ($msg)"
132 delete_breakpoints
133}
134
135proc step_ten_loops { msg } {
136 global gdb_prompt
137
138 for {set i 0} {[expr $i < 10]} {set i [expr $i + 1]} {
139 send_gdb "step\n"
140 set other_step 0
141 gdb_expect {
142 -re ".*myp\\) \\+\\+;\[\r\n\]+$gdb_prompt $" {
143 pass "step to increment ($msg $i)"
144 }
145 -re "$gdb_prompt $" {
146 if {$other_step == 0} {
147 set other_step 1
148 send_gdb "step\n"
149 exp_continue
150 } else {
151 fail "step to increment ($msg $i)"
152 # FIXME cascade?
153 }
154 }
155 timeout {
156 fail "step to increment ($msg $i) (timeout)"
157 }
158 }
159 }
160}
161
162# Start with a fresh gdb.
163
164gdb_exit
165gdb_start
166gdb_reinitialize_dir $srcdir/$subdir
167
168# We'll need this when we send_gdb a ^C to GDB. Need to do it before we
169# run the program and gdb starts saving and restoring tty states.
170# On Ultrix, we don't need it and it is really slow (because shell_escape
171# doesn't use vfork).
172if ![istarget "*-*-ultrix*"] then {
173 gdb_test "shell stty intr '^C'" ""
174}
175
176gdb_load ${binfile}
177
178gdb_test "set print sevenbit-strings" ""
179gdb_test "set width 0" ""
180
181runto_main
182
183# See if scheduler locking is available on this target.
184send_gdb "set scheduler-locking off\n"
185global gdb_prompt
186gdb_expect {
187 -re "Target .* cannot support this command"
188 {
189 unsupported "target does not support scheduler locking"
190 return
191 }
192 -re "$gdb_prompt $"
193 {
194 pass "scheduler locking set to none"
195 }
196 timeout
197 {
198 unsupported "target does not support scheduler locking (timeout)"
199 return
200 }
201}
202
203gdb_breakpoint [gdb_get_line_number "schedlock.exp: last thread start"]
204gdb_continue_to_breakpoint "all threads started"
205
206global list_count
207set list_count 0
208
209set start_args [get_args]
210
211# First make sure that all threads are alive.
212my_continue "initial"
213
214set cont_args [get_args]
215
e09490f1 216set bad 0
18ecae38 217for {set i 0} {[expr $i < $NUM]} {set i [expr $i + 1]} {
0312286c 218 if {[lindex $start_args $i] == [lindex $cont_args $i]} {
e09490f1 219 incr bad
0312286c
DJ
220 }
221}
e09490f1 222if { $bad == 0 } {
18ecae38
DJ
223 pass "all threads alive"
224} else {
e09490f1 225 fail "all threads alive ($bad/$NUM did not run)"
18ecae38 226}
0312286c
DJ
227
228# We can't change threads, unfortunately, in current GDB. Use
229# whichever we stopped in.
230set curthread [get_current_thread "find current thread (1)"]
231
232
233
234
235# Test stepping without scheduler locking.
236gdb_test "set scheduler-locking off" ""
237
238step_ten_loops "unlocked"
239
240# Make sure we're still in the same thread.
241set newthread [get_current_thread "find current thread (2)"]
242if {$curthread == $newthread} {
243 pass "step without lock does not change thread"
244} else {
245 fail "step without lock does not change thread (switched to thread $newthread)"
246}
247
248set start_args $cont_args
249set cont_args [get_args]
250
a25fbfec 251set num_other_threads 0
18ecae38 252for {set i 0} {[expr $i < $NUM]} {set i [expr $i + 1]} {
0312286c
DJ
253 if {[lindex $start_args $i] == [lindex $cont_args $i]} {
254 if {$i == $curthread} {
255 fail "current thread stepped (didn't run)"
0312286c
DJ
256 }
257 } else {
258 if {$i == $curthread} {
259 if {[lindex $start_args $i] == [expr [lindex $cont_args $i] - 10]} {
260 pass "current thread stepped"
261 } else {
262 fail "current thread stepped (wrong amount)"
263 }
264 } else {
a25fbfec 265 set num_other_threads [expr $num_other_threads + 1]
0312286c
DJ
266 }
267 }
268}
a25fbfec 269if {$num_other_threads > 0} {
18ecae38 270 pass "other threads ran - unlocked"
a25fbfec 271} else {
18ecae38 272 fail "other threads ran - unlocked"
a25fbfec 273}
0312286c
DJ
274
275# Test continue with scheduler locking
276gdb_test "set scheduler-locking on" ""
277
278my_continue "with lock"
279
280# Make sure we're still in the same thread.
281set newthread [get_current_thread "find current thread (3)"]
282if {$curthread == $newthread} {
283 pass "continue with lock does not change thread"
284} else {
285 fail "continue with lock does not change thread (switched to thread $newthread)"
286}
287
288set start_args $cont_args
289set cont_args [get_args]
290
18ecae38
DJ
291set num_other_threads 0
292for {set i 0} {[expr $i < $NUM]} {set i [expr $i + 1]} {
0312286c
DJ
293 if {[lindex $start_args $i] == [lindex $cont_args $i]} {
294 if {$i == $curthread} {
295 fail "current thread ran (didn't run)"
0312286c
DJ
296 }
297 } else {
298 if {$i == $curthread} {
299 pass "current thread ran"
300 } else {
18ecae38 301 incr num_other_threads
0312286c
DJ
302 }
303 }
304}
18ecae38
DJ
305if {$num_other_threads > 0} {
306 fail "other threads didn't run - locked"
307} else {
308 pass "other threads didn't run - locked"
309}
0312286c
DJ
310
311# Test stepping with scheduler locking
312step_ten_loops "locked"
313
314# Make sure we're still in the same thread.
315set newthread [get_current_thread "find current thread (2)"]
316if {$curthread == $newthread} {
317 pass "step with lock does not change thread"
318} else {
319 fail "step with lock does not change thread (switched to thread $newthread)"
320}
321
322set start_args $cont_args
323set cont_args [get_args]
324
18ecae38
DJ
325set num_other_threads 0
326for {set i 0} {[expr $i < $NUM]} {set i [expr $i + 1]} {
0312286c
DJ
327 if {[lindex $start_args $i] == [lindex $cont_args $i]} {
328 if {$i == $curthread} {
329 fail "current thread stepped locked (didn't run)"
0312286c
DJ
330 }
331 } else {
332 if {$i == $curthread} {
333 if {[lindex $start_args $i] == [expr [lindex $cont_args $i] - 10]} {
334 pass "current thread stepped locked"
335 } else {
336 fail "current thread stepped locked (wrong amount)"
337 }
338 } else {
18ecae38 339 incr num_other_threads
0312286c
DJ
340 }
341 }
342}
18ecae38
DJ
343if {$num_other_threads > 0} {
344 fail "other threads didn't run - step locked"
345} else {
346 pass "other threads didn't run - step locked"
347}
0312286c
DJ
348
349return 0
This page took 0.61074 seconds and 4 git commands to generate.