1 # tls.exp
-- Expect script to test thread
-local storage
2 # Copyright
(C
) 1992, 2003 Free Software Foundation
, Inc.
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
6 # the Free Software Foundation
; either version
2 of the License
, or
7 #
(at your option
) any later version.
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this
program; if not
, write to the Free Software
16 # Foundation
, Inc.
, 59 Temple Place
- Suite
330, Boston
, MA
02111-1307, USA.
*/
18 # Please email
any bugs
, comments
, and
/or additions to this file to
:
19 # bug
-gdb@prep.ai.mit.edu
22 set srcfile $
{testfile
}.c
23 set binfile $
{objdir
}/$
{subdir
}/$
{testfile
}
25 if [istarget
"*-*-linux"] then {
26 set target_cflags
"-D_MIT_POSIX_THREADS"
31 if {[gdb_compile_pthreads
"${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
35 ### Compute the value of the a_thread_local
variable.
36 proc compute_expected_value
{value
} {
39 while { $i
<= $value
} {
40 incr expected_value $i
43 return $expected_value
46 ###
Get the value of the
variable 'me' for the current thread.
47 proc get_me_variable
{tnum
} {
55 -re
".*= ($decimal).*\r\n$gdb_prompt $" {
56 set value_of_me $expect_out
(1,string
)
57 pass
"$tnum thread print me"
60 fail
"$tnum thread print me"
63 fail
"$tnum thread print me (timeout)"
69 ### Check the
values of the thread local variables in the thread.
70 ### Also check that
info address print the right things.
71 proc check_thread_local
{number
} {
72 set me_variable
[get_me_variable $number
]
73 set expected_value
[compute_expected_value $
{me_variable
}]
75 gdb_test
"p a_thread_local" \
77 "${number} thread local storage"
79 gdb_test
"p another_thread_local" \
81 "${number} another thread local storage"
83 gdb_test
"info address a_thread_local" \
84 ".*a_thread_local.*a thread-local variable at offset.*" \
85 "${number} info address a_thread_local"
87 gdb_test
"info address another_thread_local" \
88 ".*another_thread_local.*a thread-local variable at offset.*" \
89 "${number} info address another_thread_local"
92 ### Select a particular thread.
93 proc select_thread
{thread
} {
96 send_gdb
"thread $thread\n"
98 -re
"\\\[Switching to thread .*\\\].*\r\n$gdb_prompt $" {
99 pass
"selected thread: $thread"
101 -re
"$gdb_prompt $" {
102 fail
"selected thread: $thread"
105 fail
"selected thread: $thread (timeout)"
110 ###
Do a backtrace
for the current thread
, and check that the
'spin' routine
111 ### is in it. This means we have one of the threads we created
, rather
112 ### than the main thread. Record the thread in the spin_threads
113 ### array. Also remember the level of the
'spin' routine in the backtrace
, for
115 proc check_thread_stack
{number spin_threads spin_threads_level
} {
120 upvar $spin_threads tarr
121 upvar $spin_threads_level tarrl
123 select_thread $number
126 -re
".*(\[0-9\]+)\[ \t\]+$hex in spin \\(vp=(0x\[0-9a-f\]+).*\r\n$gdb_prompt $" {
127 if {[info exists tarr
($number
)]} {
128 fail
"backtrace of thread number $number in spin"
130 pass
"backtrace of thread number $number in spin"
131 set level $expect_out
(1,string
)
132 set tarrl
($number
) $level
136 -re
".*$gdb_prompt $" {
139 pass
"backtrace of thread number $number not relevant"
142 fail
"backtrace of thread number $number (timeout)"
149 gdb_reinitialize_dir $srcdir
/$subdir
152 if ![runto_main
] then {
153 fail
"Can't run to main"
157 #
Set a breakpoint at the
"spin" routine to
158 # test the thread local
's value.
160 gdb_test "b [gdb_get_line_number "here we know tls value"]" \
161 ".*Breakpoint 2.*tls.*" "set breakpoint at all threads"
163 # Set a bp at a point where we know all threads are alive.
165 gdb_test "b [gdb_get_line_number "still alive"]" \
166 ".*Breakpoint 3.*tls.*" "set breakpoint at synch point"
168 # Set a bp at the end to see if all threads are finished.
170 gdb_test "b [gdb_get_line_number "before exit"]" \
171 ".*Breakpoint 4.*tls.*" "set breakpoint at exit"
173 send_gdb "continue\n"
175 -re ".*Program received signal SIGSEGV.*a_thread_local = 0;.*$gdb_prompt $" {
176 # This is the first symptom if the gcc and binutils versions
177 # in use support TLS, but the system glibc does not.
178 unsupported "continue to first thread: system does not support TLS"
181 -re ".*Program exited normally.*$gdb_prompt $" {
182 fail "continue to first thread: program runaway"
184 -re ".*Pass 0 done.*Pass 1 done.*$gdb_prompt $" {
185 fail "continue to first thread: program runaway 2"
187 -re ".*Breakpoint 2.*tls value.*$gdb_prompt $" {
188 pass "continue to first thread: get to thread"
190 -re ".*$gdb_prompt $" {
191 fail "continue to first thread: no progress?"
193 timeout { fail "continue to first thread (timeout)" }
196 gdb_test "info thread" ".*Thread.*spin.*" \
197 "at least one th in spin while stopped at first th"
199 check_thread_local "first"
201 gdb_test "continue" ".*Breakpoint 2.*tls value.*" "continue to second thread"
202 gdb_test "info thread" "Thread.*spin.*" \
203 "at least one th in spin while stopped at second th"
205 check_thread_local "second"
207 gdb_test "continue" ".*Breakpoint 2.*tls value.*" "continue to third thread"
208 gdb_test "info thread" ".*Thread.*spin.*" \
209 "at least one th in spin while stopped at third th"
211 check_thread_local "third"
213 gdb_test "continue" ".*Breakpoint 3.*still alive.*" "continue to synch point"
216 send_gdb "info thread\n"
218 -re "^info thread\[ \t\r\n\]+(\[0-9\]+) Thread.*$gdb_prompt $" {
219 set no_of_threads $expect_out(1,string)
220 pass "get number of threads"
222 -re "$gdb_prompt $" {
223 fail "get number of threads"
226 fail "get number of threads (timeout)"
230 array set spin_threads {}
232 array set spin_threads_level {}
233 unset spin_threads_level
235 # For each thread check its backtrace to see if it is stopped at the
237 for {set i 1} {$i <= $no_of_threads} {incr i} {
238 check_thread_stack $i spin_threads spin_threads_level
241 ### Loop through the threads and check the values of the tls variables.
242 ### keep track of how many threads we find in the spin routine.
244 foreach i [array names spin_threads] {
245 if {$spin_threads($i) == 1} {
248 set level $spin_threads_level($i)
249 gdb_test "up $level" ".*spin.*sem_wait.*" "thread $i up"
250 check_thread_local $i
254 if {$thrs_in_spin == 0} {
255 fail "No thread backtrace reported spin (vsyscall kernel problem?)"
258 gdb_test "continue" ".*Breakpoint 4.*before exit.*" "threads exited"
260 send_gdb "info thread\n"
262 -re ".* 1 Thread.*2 Thread.*$gdb_prompt $" {
263 fail "Too many threads left at end"
265 -re ".*\\\* 1 Thread.*main.*$gdb_prompt $" {
266 pass "Expect only base thread at end"
268 -re ".*No stack.*$gdb_prompt $" {
269 fail "runaway at end"
271 -re ".*$gdb_prompt $" {
274 timeout { fail "at end (timeout)" }
277 # Start over and do some "info address" stuff
281 gdb_test "info address a_global" \
282 ".*a_global.*static storage at address.*" "info address a_global"
284 setup_kfail "gdb/1294" "*-*-*"
285 gdb_test "info address me" ".*me.*is a variable at offset.*" "info address me"