]> Git Repo - binutils.git/blob - gdb/testsuite/gdb.threads/tls-so_extern.exp
Automatic date update in version.in
[binutils.git] / gdb / testsuite / gdb.threads / tls-so_extern.exp
1 # Copyright 2003-2022 Free Software Foundation, Inc.
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
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]
23
24
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}]] != ""} {
27     return -1
28 }
29
30
31 clean_restart ${binfile}
32 gdb_load_shlib ${binfile_lib}
33
34 if {![runto_main]} {
35     return 0
36 }
37
38 gdb_test "print so_extern" "0x0" "print thread local storage variable"
39
40 gdb_test "ptype so_extern" "void \\*" "ptype of thread local storage variable"
41
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"
45
46 set line_number [gdb_get_line_number "break here to check result"]
47
48 gdb_test "break $line_number" \
49         "Breakpoint.*at.*file.*tls-so_extern_main.c.*line ${line_number}." \
50         "break in thread function"
51 gdb_test "continue" \
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" \
55          " = 1" \
56         "check so_extern address in main"
57 gdb_test "continue" \
58         "tls_ptr .* at .*:.*break here to check result.*" \
59         "continue to break in a thread"
60 gdb_test "print so_extern == &so_extern" \
61          " = 1" \
62         "check so_extern address"
63 gdb_test "continue" \
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" \
67          " = 1" \
68         "check so_extern address in other thread"
69 gdb_test "continue" \
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" \
73          " = 1" \
74         "check so_extern address at end of main"
This page took 0.028806 seconds and 4 git commands to generate.