]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.threads/pthreads.exp
Fix test names starting with uppercase output by basic functions
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.threads / pthreads.exp
CommitLineData
618f726f 1# Copyright (C) 1996-2016 Free Software Foundation, Inc.
c906108c
SS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c
SS
16# This file was written by Fred Fish. (fnf@cygnus.com)
17
87a3a92c
SL
18# This test requires sending ^C to interrupt the running target.
19if [target_info exists gdb,nointerrupts] {
20 verbose "Skipping pthreads.exp because of nointerrupts."
21 return
22}
c906108c 23
0efbbabc 24standard_testfile
c906108c
SS
25
26# regexp for "horizontal" text (i.e. doesn't include newline or
27# carriage return)
28set horiz "\[^\n\r\]*"
29
c906108c
SS
30if [istarget "*-*-linux"] then {
31 set target_cflags "-D_MIT_POSIX_THREADS"
32} else {
33 set target_cflags ""
34}
b6ff0e81 35
0efbbabc 36if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable debug] != "" } {
b5ab8ff3 37 return -1
c906108c
SS
38}
39
0efbbabc 40clean_restart ${binfile}
c906108c 41
12b5d08a
MS
42gdb_test_no_output "set print sevenbit-strings"
43#gdb_test_no_output "set print address off"
44gdb_test_no_output "set width 0"
c906108c
SS
45
46# We'll need this when we send_gdb a ^C to GDB. Need to do it before we
47# run the program and gdb starts saving and restoring tty states.
09dd9a69 48gdb_test "shell stty intr '^C'" ".*"
c906108c
SS
49
50proc all_threads_running {} {
51 global gdb_prompt
52 global srcfile
53
54 # Reset all the counters to zero.
12b5d08a
MS
55 gdb_test_no_output "set var common_routine::hits=0"
56 gdb_test_no_output "set var common_routine::from_thread1=0"
57 gdb_test_no_output "set var common_routine::from_thread2=0"
58 gdb_test_no_output "set var common_routine::from_main=0"
59 gdb_test_no_output "set var common_routine::full_coverage=0"
c906108c
SS
60
61 # Disable all breakpoints.
12b5d08a 62 gdb_test_no_output "disable"
c906108c
SS
63
64 # Set up a breakpoint that will cause us to stop when we have
65 # been called 15 times. This should be plenty of time to allow
66 # every thread to run at least once, since each thread sleeps for
67 # one second between calls to common_routine.
f6978de9 68 gdb_test "tbreak common_routine if hits >= 15" ".*"
c906108c
SS
69
70 # Start all the threads running again and wait for the inferior
71 # to stop. Since no other breakpoints are set at this time
72 # we should stop only when we have been previously called 15 times.
73
9db70545
MS
74 set return_me 1
75
76 gdb_test_multiple "continue" "continue until common routine run 15 times" {
77 -re "Continuing.*common_routine.*at.*$srcfile.*$gdb_prompt $" {
78 set return_me 0
c906108c
SS
79 }
80 }
81
9db70545 82 if { $return_me == 1 } then {
ae59b1da 83 return 0
9db70545
MS
84 }
85
c906108c
SS
86 # Check that we stopped when we actually expected to stop, by
87 # verifying that there have been 15 previous hits.
88
2f09097b
ND
89 # NOTE: Because of synchronization behavior, it is possible for
90 # more than one thread to increment "hits" between one breakpoint
91 # trap and the next. So stopping after 16 or 17 hits should be
92 # considered acceptable.
93
9db70545
MS
94 gdb_test_multiple "p common_routine::hits" \
95 "stopped before calling common_routine 15 times" {
96 -re ".*= 15\r\n$gdb_prompt $" {
97 pass "stopped before calling common_routine 15 times"
98 }
99 -re ".*= 16\r\n$gdb_prompt $" {
100 pass "stopped before calling common_routine 15 times (16 times)"
101 }
102 -re ".*= 17\r\n$gdb_prompt $" {
103 pass "stopped before calling common_routine 15 times (17 times)"
104 }
c906108c 105 }
c906108c
SS
106
107 # Also check that all of the threads have run, which will only be true
108 # if the full_coverage variable is set.
109
9db70545
MS
110 set return_me 1
111 gdb_test_multiple "p common_routine::full_coverage" \
112 "some threads didn't run" {
113 -re ".* = 1.*$gdb_prompt $" {
114 }
115 -re ".* = 0.*$gdb_prompt $" {
116 fail "some threads didn't run"
117 set return_me 0
118 }
c906108c 119 }
c906108c
SS
120
121 # Looks fine, return success.
9db70545 122 return $return_me
c906108c
SS
123}
124
125proc test_startup {} {
126 global srcdir srcfile gdb_prompt expect_out
127 global horiz
128 global main_id thread1_id thread2_id
129
130 # We should be able to do an info threads before starting any others.
9db70545
MS
131 set return_me 1
132 gdb_test_multiple "info threads" "info threads" {
ae23c492 133 -re ".*Thread.*main.*$gdb_prompt $" {
c906108c 134 pass "info threads"
9db70545 135 set return_me 0
c906108c
SS
136 }
137 -re "\r\n$gdb_prompt $" {
ae23c492 138 unsupported "gdb does not support pthreads for this machine"
c906108c
SS
139 }
140 }
141
9db70545 142 if { $return_me == 1 } then {
ae59b1da 143 return 0
9db70545
MS
144 }
145
c906108c 146 # Extract the thread id number of main thread from "info threads" output.
9db70545
MS
147 gdb_test_multiple "info threads" "get main thread id" {
148 -re "(\[0-9\]+)(${horiz}Thread${horiz}main.*)($gdb_prompt $)" {
149 }
150 }
151
c906108c
SS
152 set main_id $expect_out(1,string)
153
154 # Check that we can continue and create the first thread.
2a11c64d 155 gdb_test "break thread1" "Breakpoint .* file .*$srcfile.*"
c906108c
SS
156 gdb_test "continue" \
157 "Continuing.*Breakpoint .*, thread1 \\(arg=0xfeedface\\).*at.*$srcfile.*" \
158 "Continue to creation of first thread"
12b5d08a 159 gdb_test_no_output "disable"
c906108c
SS
160
161 # Extract the thread id number of thread 1 from "info threads" output.
9db70545
MS
162 gdb_test_multiple "info threads" "get thread 1 id" {
163 -re "(\[0-9\]+)(${horiz}Thread${horiz}thread1.*)($gdb_prompt $)" {
164 }
165 }
166
c906108c
SS
167 set thread1_id $expect_out(1,string)
168
169 # Check that we can continue and create the second thread,
170 # ignoring the first thread for the moment.
2a11c64d 171 gdb_test "break thread2" "Breakpoint .* file .*$srcfile.*"
c906108c
SS
172 gdb_test "continue" \
173 "Continuing.*Breakpoint .*, thread2 \\(arg=0xdeadbeef\\).*at.*$srcfile.*" \
174 "Continue to creation of second thread"
175
176 # Extract the thread id number of thread 2 from "info threads" output.
9db70545
MS
177 gdb_test_multiple "info threads" "get thread 2 id" {
178 -re "(\[0-9\]+)(${horiz}Thread${horiz}thread2.*)($gdb_prompt $)" {
179 }
180 }
181
c906108c
SS
182 set thread2_id $expect_out(1,string)
183
184 return 1
185}
186
187proc check_control_c {} {
188 global gdb_prompt
189
190 # Verify that all threads are running.
191 if [all_threads_running] then {
bc6c7af4 192 pass "all threads running after startup"
c906108c
SS
193 }
194
195 # Send a continue followed by ^C to the process to stop it.
9db70545 196 gdb_test_multiple "continue" "continue with all threads running" {
8f0cbc1c 197 -re "Continuing." {
bc6c7af4 198 pass "continue with all threads running"
8f0cbc1c 199 }
8f0cbc1c 200 }
51d01eda
MC
201 after 2000
202 send_gdb "\003"
c906108c 203 set description "Stopped with a ^C"
c906108c 204 gdb_expect {
f303dbd6 205 -re "Thread .* received signal SIGINT.*$gdb_prompt $" {
c906108c
SS
206 pass $description
207 }
208 -re "Quit.*$gdb_prompt $" {
209 pass $description
210 }
211 timeout {
212 fail "$description (timeout)"
ae59b1da 213 return 1
c906108c
SS
214 }
215 }
f6978de9 216 gdb_test "bt" ".*"
c906108c
SS
217
218 # Verify that all threads can be run again after a ^C stop.
219 if [all_threads_running] then {
bc6c7af4 220 pass "all threads running after continuing from ^C stop"
c906108c 221 }
ae59b1da 222 return 0
c906108c
SS
223}
224
225proc check_backtraces {} {
226 global gdb_prompt main_id thread1_id thread2_id
227
228 # Check that the "thread apply N backtrace" command works
229
230 gdb_test "thread apply $main_id backtrace" \
231 ".* in main \\(argc=.*, argv=.*\\).*" \
232 "check backtrace from main thread"
233 gdb_test "thread apply $thread1_id backtrace" \
234 ".* in thread1 \\(arg=0xfeedface\\).*" \
235 "check backtrace from thread 1"
236 gdb_test "thread apply $thread2_id backtrace" \
237 ".* in thread2 \\(arg=0xdeadbeef\\).*" \
238 "check backtrace from thread 2"
239
240 # Check that we can apply the backtrace command to all
241 # three threads with a single gdb command
242
243 gdb_test "thread apply $main_id $thread1_id $thread2_id bt" \
244 ".* in main .* in thread1 .* in thread2.*" \
245 "apply backtrace command to all three threads"
246
247 # Check that we can do thread specific backtraces
248 # This also tests that we can do thread specific breakpoints.
249
250 gdb_test "break common_routine thread $thread2_id" \
251 "Breakpoint .* at 0x.* file .* line .*" \
252 "set break at common_routine in thread 2"
253
9db70545 254 gdb_test_multiple "continue" "continue to bkpt at common_routine in thread 2" {
88caa9b9 255 -re "Breakpoint .* common_routine \\(arg=2\\).*$gdb_prompt $" {
cf74b8ca 256 pass "continue to bkpt at common_routine in thread 2"
9db70545
MS
257 gdb_test "backtrace" \
258 "#0.*common_routine \\(arg=2\\).*#1.*thread2.*" \
259 "backtrace from thread 2 bkpt in common_routine"
c906108c 260 }
88caa9b9 261 -re "Breakpoint .* common_routine \\(arg=0\\).*$gdb_prompt $" {
cf74b8ca 262 fail "continue to bkpt at common_routine in thread 2 (arg=0)"
c906108c 263 }
88caa9b9 264 -re "Breakpoint .* common_routine \\(arg=1\\).*$gdb_prompt $" {
cf74b8ca 265 fail "continue to bkpt at common_routine in thread 2 (arg=1)"
c906108c 266 }
c906108c
SS
267 }
268}
269
c906108c 270if [runto_main] then {
c906108c 271 if [test_startup] then {
da55addb
MS
272 if [check_control_c] then {
273 warning "Could not stop child with ^C; skipping rest of tests.\n"
4ec70201 274 return
da55addb 275 }
c906108c
SS
276 check_backtraces
277 }
278}