]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.threads/tls-so_extern.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.threads / tls-so_extern.exp
CommitLineData
1d506c26 1# Copyright 2003-2024 Free Software Foundation, Inc.
5382cfab
PW
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# tls-so_extern.exp -- Expect script to test thread local storage in gdb, with
17# a variable defined in a shared library.
18
19standard_testfile tls-so_extern_main.c
20set libfile tls-so_extern
21set srcfile_lib ${libfile}.c
22set binfile_lib [standard_output_file ${libfile}.so]
23
24
5382cfab
PW
25if { [gdb_compile_shlib_pthreads ${srcdir}/${subdir}/${srcfile_lib} ${binfile_lib} {debug}] != ""
26 || [gdb_compile_pthreads ${srcdir}/${subdir}/${srcfile} ${binfile} executable [list debug shlib=${binfile_lib}]] != ""} {
27 return -1
28}
29
30
31clean_restart ${binfile}
d9019901 32gdb_load_shlib ${binfile_lib}
5382cfab 33
b8ffa8b3 34if {![runto_main]} {
5382cfab
PW
35 return 0
36}
37
38gdb_test "print so_extern" "0x0" "print thread local storage variable"
39
40gdb_test "ptype so_extern" "void \\*" "ptype of thread local storage variable"
41
42gdb_test "info address so_extern" \
43 "Symbol \\\"so_extern\\\" is a thread-local variable at offset 0x0 in the thread-local storage for .*tls-so_extern.*" \
44 "print storage info for thread local storage variable"
45
46set line_number [gdb_get_line_number "break here to check result"]
47
48gdb_test "break $line_number" \
49 "Breakpoint.*at.*file.*tls-so_extern_main.c.*line ${line_number}." \
50 "break in thread function"
51gdb_test "continue" \
52 "tls_ptr .* at .*:.*break here to check result.*" \
53 "continue to break in tls_ptr called by main"
54gdb_test "print so_extern == &so_extern" \
55 " = 1" \
56 "check so_extern address in main"
57gdb_test "continue" \
58 "tls_ptr .* at .*:.*break here to check result.*" \
59 "continue to break in a thread"
60gdb_test "print so_extern == &so_extern" \
61 " = 1" \
62 "check so_extern address"
63gdb_test "continue" \
64 "tls_ptr .* at .*:.*break here to check result.*" \
65 "continue to break in the other thread"
66gdb_test "print so_extern == &so_extern" \
67 " = 1" \
68 "check so_extern address in other thread"
69gdb_test "continue" \
70 "tls_ptr .* at .*:.*break here to check result.*" \
71 "continue to break in tls_ptr called at end of main"
72gdb_test "print so_extern == &so_extern" \
73 " = 1" \
74 "check so_extern address at end of main"