blob: 13f76f49102bc14b13850ba610b9b704866209dd (
plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
# Copyright 2023-2024 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/>.
# Tests related to pending breakpoints in a multi-inferior environment.
require allow_shlib_tests !use_gdb_stub
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 { [build_executable "failed to prepare" $testfile $srcfile \
[list debug \
additional_flags=-DSHLIB_NAME=\"$binfile_lib_target\" \
shlib_load]] } {
return -1
}
# Start two inferiors, both running the same test binary. The arguments
# INF_1_STOP and INF_2_STOP are source code patterns that are passed to
# gdb_get_line_number to figure out where each inferior should be stopped.
#
# This proc does a clean_restart and leaves inferior 2 selected. Also the
# 'breakpoint pending' flag is enabled, so pending breakpoints can be created
# without GDB prompting the user.
proc do_test_setup { inf_1_stop inf_2_stop } {
clean_restart ${::binfile}
gdb_locate_shlib $::binfile_lib
if {![runto_main]} {
return false
}
gdb_breakpoint [gdb_get_line_number ${inf_1_stop}] temporary
gdb_continue_to_breakpoint "move inferior 1 into position"
gdb_test "add-inferior -exec ${::binfile}" \
"Added inferior 2.*" "add inferior 2"
gdb_test "inferior 2" "Switching to inferior 2 .*" "switch to inferior 2"
if {![runto_main]} {
return false
}
gdb_breakpoint [gdb_get_line_number ${inf_2_stop}] temporary
gdb_continue_to_breakpoint "move inferior 2 into position"
gdb_test_no_output "set breakpoint pending on"
return true
}
# Check that when a breakpoint is in the pending state, but that breakpoint
# does have some locations (those locations themselves are pending), GDB
# doesn't display the inferior list in the 'info breakpoints' output.
proc_with_prefix test_no_inf_display {} {
do_test_setup "Break before open" "Break before open"
# Create a breakpoint on 'foo'. As the shared library (that
# contains foo) has not been loaded into any inferior yet, then
# there will be no locations and the breakpoint will be created
# pending. Pass the 'allow-pending' flag so the gdb_breakpoint
# correctly expects the new breakpoint to be pending.
gdb_breakpoint "foo" allow-pending
set bpnum [get_integer_valueof "\$bpnum" "*INVALID*" \
"get foo breakpoint number"]
# Check the 'info breakpoints' output; the breakpoint is pending with
# no 'inf X' appearing at the end of the line.
gdb_test "info breakpoint $bpnum" \
"$bpnum\\s+breakpoint\\s+keep\\s+y\\s+<PENDING>\\s+foo" \
"check info bp before locations have been created"
# Now select inferior 1 and allow the inferior to run forward to the
# point where a breakpoint location for foo will have been created.
gdb_test "inferior 1" "Switching to inferior 1 .*"
gdb_breakpoint [gdb_get_line_number "Break after open"] temporary
gdb_continue_to_breakpoint \
"move inferior 1 until a location has been added"
# Check the 'info breakpoints' output. Notice we display the inferior
# list at the end of the breakpoint line.
gdb_test "info breakpoint $bpnum" \
"$bpnum\\s+breakpoint\\s+keep\\s+y\\s+$::hex\\s+<foo\[^>\]*>\\s+inf 1" \
"check info breakpoints while breakpoint is inserted"
# Continue inferior 1 until the shared library has been unloaded. The
# breakpoint on 'foo' will return to the pending state. We will need to
# 'continue' twice as the first time will hit the 'foo' breakpoint.
gdb_breakpoint [gdb_get_line_number "Break after close"] temporary
gdb_continue_to_breakpoint "hit the breakpoint in foo"
gdb_continue_to_breakpoint "after close library"
# Check the 'info breakpoints' output, check there is no 'inf 1' at the
# end of the breakpoint line.
gdb_test "info breakpoint $bpnum" \
[multi_line \
"$bpnum\\s+breakpoint\\s+keep\\s+y\\s+<PENDING>\\s+foo" \
"\\s+breakpoint already hit 1 time"] \
"check info breakpoints while breakpoint is pending"
}
# Run all the tests.
test_no_inf_display
|