1 # Copyright 2003-2022 Free Software Foundation, Inc.
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.
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.
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/>. */
16 # tls-so_extern.exp -- Expect script to test thread local storage in gdb, with
17 # a variable defined in a shared library.
19 standard_testfile tls-so_extern_main.c
20 set libfile tls-so_extern
21 set srcfile_lib ${libfile}.c
22 set binfile_lib [standard_output_file ${libfile}.so]
25 if { [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}]] != ""} {
31 clean_restart ${binfile}
32 gdb_load_shlib ${binfile_lib}
38 gdb_test "print so_extern" "0x0" "print thread local storage variable"
40 gdb_test "ptype so_extern" "void \\*" "ptype of thread local storage variable"
42 gdb_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"
46 set line_number [gdb_get_line_number "break here to check result"]
48 gdb_test "break $line_number" \
49 "Breakpoint.*at.*file.*tls-so_extern_main.c.*line ${line_number}." \
50 "break in thread function"
52 "tls_ptr .* at .*:.*break here to check result.*" \
53 "continue to break in tls_ptr called by main"
54 gdb_test "print so_extern == &so_extern" \
56 "check so_extern address in main"
58 "tls_ptr .* at .*:.*break here to check result.*" \
59 "continue to break in a thread"
60 gdb_test "print so_extern == &so_extern" \
62 "check so_extern address"
64 "tls_ptr .* at .*:.*break here to check result.*" \
65 "continue to break in the other thread"
66 gdb_test "print so_extern == &so_extern" \
68 "check so_extern address in other thread"
70 "tls_ptr .* at .*:.*break here to check result.*" \
71 "continue to break in tls_ptr called at end of main"
72 gdb_test "print so_extern == &so_extern" \
74 "check so_extern address at end of main"