1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 2023 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# This test checks that pending thread-specific breakpoints are
# correctly deleted when the thread the breakpoint is for goes out of
# scope.
#
# We also check that we can't create a pending thread-specific
# breakpoint for a non-existent thread.
require allow_shlib_tests
standard_testfile
set libname $testfile-lib
set srcfile_lib $srcdir/$subdir/$libname.c
set binfile_lib [standard_output_file $libname.so]
if { [gdb_compile_shlib $srcfile_lib $binfile_lib {}] != "" } {
untested "failed to compile shared library 1"
return -1
}
set binfile_lib_target [gdb_download_shlib $binfile_lib]
if { [prepare_for_testing "failed to prepare" $testfile $srcfile \
[list debug \
additional_flags=-DSHLIB_NAME=\"$binfile_lib_target\" \
shlib_load pthreads]] } {
return -1
}
gdb_locate_shlib $binfile_lib
if ![runto_main] {
return 0
}
# Run until we have two threads.
gdb_breakpoint "breakpt"
gdb_continue_to_breakpoint "first breakpt call"
# Confirm that we have a thread '2'.
gdb_test "info threads" "\r\n\\s+2\\s+\[^\r\n\]+"
# Create a pending, thread-specific, breakpoint on 'foo'.
gdb_breakpoint "foo thread 2" allow-pending
set bpnum [get_integer_valueof "\$bpnum" "*INVALID*" \
"get breakpoint number"]
# Check we can't create a pending thread-specific breakpoint for a
# non-existent thread.
gdb_test "with breakpoint pending on -- break foo thread 99" \
"Unknown thread 99\\."
# Continue to 'breakpt' again. Don't use gdb_continue_to_breakpoint
# as we are looking for the thread exited and breakpoint deleted
# messages.
gdb_test "continue" \
[multi_line \
"Continuing\\." \
"\\\[Thread \[^\r\n\]+ exited\\\]" \
"Thread-specific breakpoint $bpnum deleted - thread 2 no longer in the thread list\\." \
"" \
"Thread 1 \[^\r\n\]+, breakpt \\(\\) at \[^\r\n\]+" \
"$decimal\\s+\[^\r\n\]+"] \
"second breakpt call"
# Confirm breakpoint has been deleted.
gdb_test "info breakpoints $bpnum" \
"No breakpoint, watchpoint, tracepoint, or catchpoint matching '$bpnum'\\."
# Continue again. This will pass through 'foo'. We should not stop
# in 'foo', the breakpoint has been deleted. We should next stop in
# breakpt again.
gdb_test "continue" \
[multi_line \
"Continuing\\." \
"" \
"Thread 1 \[^\r\n\]+ hit Breakpoint $decimal, breakpt \\(\\) at \[^\r\n\]+" \
"$decimal\\s+\[^\r\n\]+"] \
"third breakpt call"
gdb_test "bt 1" \
[multi_line \
"#0\\s+breakpt \\(\\) at \[^\r\n\]+" \
"\\(More stack frames follow\\.\\.\\.\\)"]
|