Introduce gdb.FinishBreakpoint in Python
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-breakpoint.exp
CommitLineData
7b6bb8da 1# Copyright (C) 2010, 2011 Free Software Foundation, Inc.
adc36818
PM
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# This file is part of the GDB testsuite. It tests the mechanism
17# exposing values to Python.
18
19if $tracelevel then {
20 strace $tracelevel
21}
22
a2c09bd0
DE
23load_lib gdb-python.exp
24
adc36818
PM
25set testfile "py-breakpoint"
26set srcfile ${testfile}.c
27if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
28 return -1
29}
30
adc36818
PM
31# Skip all tests if Python scripting is not enabled.
32if { [skip_python_tests] } { continue }
33
34if ![runto_main] then {
35 fail "Cannot run to main."
36 return 0
37}
38
39global hex decimal
40
41# Initially there should be one breakpoint: main.
42
43gdb_py_test_silent_cmd "python blist = gdb.breakpoints()" "Get Breakpoint List" 0
44gdb_test "python print blist\[0\]" "<gdb.Breakpoint object at $hex>" "Check obj exists"
45gdb_test "python print blist\[0\].location" "main." "Check breakpoint location"
46
cc72b2a2
KP
47set mult_line [gdb_get_line_number "Break at multiply."]
48gdb_breakpoint ${mult_line}
adc36818
PM
49gdb_continue_to_breakpoint "Break at multiply."
50
51# Check that the Python breakpoint code noted the addition of a
52# breakpoint "behind the scenes".
53gdb_py_test_silent_cmd "python blist = gdb.breakpoints()" "Get Breakpoint List" 0
54gdb_test "python print len(blist)" "2" "Check for two breakpoints"
55gdb_test "python print blist\[0\]" "<gdb.Breakpoint object at $hex>" "Check obj exists"
56gdb_test "python print blist\[0\].location" "main." "Check breakpoint location"
57gdb_test "python print blist\[1\]" "<gdb.Breakpoint object at $hex>" "Check obj exists"
cc72b2a2
KP
58
59gdb_test "python print blist\[1\].location" "py-breakpoint\.c:${mult_line}*" \
60 "Check breakpoint location"
adc36818
PM
61
62# Check hit and ignore counts.
63gdb_test "python print blist\[1\].hit_count" "1" "Check breakpoint hit count"
64gdb_py_test_silent_cmd "python blist\[1\].ignore_count = 4" "Set breakpoint hit count" 0
65gdb_continue_to_breakpoint "Break at multiply."
66gdb_test "python print blist\[1\].hit_count" "6" "Check breakpoint hit count"
8bfb830f 67gdb_test "print result" " = 545" "Check expected variable result after 6 iterations"
adc36818
PM
68
69# Test breakpoint is enabled and disabled correctly..
70gdb_breakpoint [gdb_get_line_number "Break at add."]
71gdb_continue_to_breakpoint "Break at add."
72gdb_test "python print blist\[1\].enabled" "True" "Check breakpoint enabled."
73gdb_py_test_silent_cmd "python blist\[1\].enabled = False" "Set breakpoint disabled." 0
74gdb_continue_to_breakpoint "Break at add."
75gdb_py_test_silent_cmd "python blist\[1\].enabled = True" "Set breakpoint enabled." 0
76gdb_continue_to_breakpoint "Break at multiply."
77
78# Test other getters and setters.
79gdb_py_test_silent_cmd "python blist = gdb.breakpoints()" "Get Breakpoint List" 0
80gdb_test "python print blist\[1\].thread" "None" "Check breakpoint thread"
81gdb_test "python print blist\[1\].type == gdb.BP_BREAKPOINT" "True" "Check breakpoint type"
82gdb_test "python print blist\[0\].number" "1" "Check breakpoint number"
83gdb_test "python print blist\[1\].number" "2" "Check breakpoint number"
84gdb_test "python print blist\[2\].number" "3" "Check breakpoint number"
85
94b6973e
PM
86# Start with a fresh gdb.
87clean_restart ${testfile}
88
89if ![runto_main] then {
90 fail "Cannot run to main."
91 return 0
92}
93
94# Test breakpoints are deleted correctly.
95set deltst_location [gdb_get_line_number "Break at multiply."]
96set end_location [gdb_get_line_number "Break at end."]
97gdb_py_test_silent_cmd "python dp1 = gdb.Breakpoint (\"$deltst_location\")" "Set breakpoint" 0
98gdb_breakpoint [gdb_get_line_number "Break at end."]
99gdb_py_test_silent_cmd "python del_list = gdb.breakpoints()" "Get Breakpoint List" 0
100gdb_test "python print len(del_list)" "3" "Number of breakpoints before delete"
101gdb_continue_to_breakpoint "Break at multiply." ".*/$srcfile:$deltst_location.*"
102gdb_py_test_silent_cmd "python dp1.delete()" "Delete Breakpoint" 0
103gdb_test "python print dp1.number" "RuntimeError: Breakpoint 2 is invalid.*" "Check breakpoint invalidated"
104gdb_py_test_silent_cmd "python del_list = gdb.breakpoints()" "Get Breakpoint List" 0
105gdb_test "python print len(del_list)" "2" "Number of breakpoints after delete"
106gdb_continue_to_breakpoint "Break at end." ".*/$srcfile:$end_location.*"
107
108
adc36818
PM
109# Start with a fresh gdb.
110clean_restart ${testfile}
111
112if ![runto_main] then {
113 fail "Cannot run to main."
114 return 0
115}
116
117# Test conditional setting.
118set bp_location1 [gdb_get_line_number "Break at multiply."]
119gdb_py_test_silent_cmd "python bp1 = gdb.Breakpoint (\"$bp_location1\")" "Set breakpoint" 0
120gdb_continue_to_breakpoint "Break at multiply."
121gdb_py_test_silent_cmd "python bp1.condition = \"i == 5\"" "Set breakpoint" 0
122gdb_test "python print bp1.condition" "i == 5" "Test conditional has been set"
123gdb_continue_to_breakpoint "Break at multiply."
124gdb_test "print i" "5" "Test conditional breakpoint stopped after five iterations"
125gdb_py_test_silent_cmd "python bp1.condition = None" "Clear condition" 0
126gdb_test "python print bp1.condition" "None" "Test conditional read"
127gdb_continue_to_breakpoint "Break at multiply."
128gdb_test "print i" "6" "Test breakpoint stopped after six iterations"
129
130# Test commands.
131gdb_breakpoint [gdb_get_line_number "Break at add."]
132set test {commands $bpnum}
133gdb_test_multiple $test $test { -re "\r\n>$" { pass $test } }
134set test {print "Command for breakpoint has been executed."}
135gdb_test_multiple $test $test { -re "\r\n>$" { pass $test } }
136set test {print result}
137gdb_test_multiple $test $test { -re "\r\n>$" { pass $test } }
138gdb_test "end"
139
140gdb_py_test_silent_cmd "python blist = gdb.breakpoints()" "Get Breakpoint List" 0
141gdb_test "python print blist\[len(blist)-1\].commands" "print \"Command for breakpoint has been executed.\".*print result"
142
84f4c1fe
PM
143# Start with a fresh gdb.
144clean_restart ${testfile}
145
146if ![runto_main] then {
147 fail "Cannot run to main."
148 return 0
149}
150
8bfb830f 151# Test invisible breakpoints.
84f4c1fe
PM
152delete_breakpoints
153set ibp_location [gdb_get_line_number "Break at multiply."]
154gdb_py_test_silent_cmd "python ibp = gdb.Breakpoint(\"$ibp_location\", internal=False)" "Set invisible breakpoint" 0
155gdb_py_test_silent_cmd "python ilist = gdb.breakpoints()" "Get Breakpoint List" 0
156gdb_test "python print ilist\[0\]" "<gdb.Breakpoint object at $hex>" "Check invisible bp obj exists"
157gdb_test "python print ilist\[0\].location" "py-breakpoint\.c:$ibp_location*" "Check breakpoint location"
158gdb_test "python print ilist\[0\].visible" "True" "Check breakpoint visibility"
159gdb_test "info breakpoints" "py-breakpoint\.c:$ibp_location.*" "Check info breakpoints shows visible breakpoints"
160delete_breakpoints
161gdb_py_test_silent_cmd "python ibp = gdb.Breakpoint(\"$ibp_location\", internal=True)" "Set invisible breakpoint" 0
162gdb_py_test_silent_cmd "python ilist = gdb.breakpoints()" "Get Breakpoint List" 0
163gdb_test "python print ilist\[0\]" "<gdb.Breakpoint object at $hex>" "Check invisible bp obj exists"
164gdb_test "python print ilist\[0\].location" "py-breakpoint\.c:$ibp_location*" "Check breakpoint location"
165gdb_test "python print ilist\[0\].visible" "False" "Check breakpoint visibility"
166gdb_test "info breakpoints" "No breakpoints or watchpoints.*" "Check info breakpoints does not show invisible breakpoints"
167gdb_test "maint info breakpoints" "py-breakpoint\.c:$ibp_location.*" "Check maint info breakpoints shows invisible breakpoints"
168
169
adc36818
PM
170# Watchpoints
171# Start with a fresh gdb.
172clean_restart ${testfile}
173
e0756905
UW
174# Disable hardware watchpoints if necessary.
175if [target_info exists gdb,no_hardware_watchpoints] {
176 gdb_test_no_output "set can-use-hw-watchpoints 0" ""
177}
178
adc36818
PM
179if ![runto_main] then {
180 fail "Cannot run to main."
181 return 0
182}
183
184gdb_py_test_silent_cmd "python wp1 = gdb.Breakpoint (\"result\", type=gdb.BP_WATCHPOINT, wp_class=gdb.WP_WRITE )" "Set watchpoint" 0
468b1aa7 185gdb_test "continue" ".*\[Ww\]atchpoint.*result.*Old value = 0.*New value = 25.*main.*" "Test watchpoint write"
adc36818 186
84f4c1fe 187# Internal breakpoints.
adc36818 188
84f4c1fe
PM
189# Start with a fresh gdb.
190clean_restart ${testfile}
adc36818 191
182b9acc
UW
192# Disable hardware watchpoints if necessary.
193if [target_info exists gdb,no_hardware_watchpoints] {
194 gdb_test_no_output "set can-use-hw-watchpoints 0" ""
195}
84f4c1fe
PM
196if ![runto_main] then {
197 fail "Cannot run to main."
198 return 0
199}
200delete_breakpoints
201gdb_py_test_silent_cmd "python wp1 = gdb.Breakpoint (\"result\", type=gdb.BP_WATCHPOINT, wp_class=gdb.WP_WRITE, internal=True )" "Set watchpoint" 0
202gdb_test "info breakpoints" "No breakpoints or watchpoints.*" "Check info breakpoints does not show invisible breakpoints"
b9b35694 203gdb_test "maint info breakpoints" ".*watchpoint.*result.*" "Check maint info breakpoints shows invisible breakpoints"
84f4c1fe 204gdb_test "continue" ".*\[Ww\]atchpoint.*result.*Old value = 0.*New value = 25.*" "Test watchpoint write"
7371cf6d
PM
205
206# Breakpoints that have an evaluation function.
207
208# Start with a fresh gdb.
209clean_restart ${testfile}
210
182b9acc
UW
211# Disable hardware watchpoints if necessary.
212if [target_info exists gdb,no_hardware_watchpoints] {
213 gdb_test_no_output "set can-use-hw-watchpoints 0" ""
214}
7371cf6d
PM
215if ![runto_main] then {
216 fail "Cannot run to main."
217 return 0
218}
219delete_breakpoints
220
221gdb_py_test_multiple "Sub-class a breakpoint" \
222 "python" "" \
223 "class bp_eval (gdb.Breakpoint):" "" \
224 " inf_i = 0" "" \
225 " count = 0" "" \
226 " def stop (self):" "" \
227 " self.count = self.count + 1" "" \
228 " self.inf_i = gdb.parse_and_eval(\"i\")" "" \
229 " if self.inf_i == 3:" "" \
230 " return True" "" \
231 " return False" "" \
232 "end" ""
233
234gdb_py_test_multiple "Sub-class a second breakpoint" \
235 "python" "" \
236 "class bp_also_eval (gdb.Breakpoint):" "" \
237 " count = 0" "" \
238 " def stop (self):" "" \
239 " self.count = self.count + 1" "" \
240 " if self.count == 9:" "" \
241 " return True" "" \
242 " return False" "" \
243 "end" ""
244
245gdb_py_test_multiple "Sub-class a third breakpoint" \
246 "python" "" \
247 "class basic (gdb.Breakpoint):" "" \
248 " count = 0" "" \
249 "end" ""
250
251set bp_location2 [gdb_get_line_number "Break at multiply."]
252set end_location [gdb_get_line_number "Break at end."]
253gdb_py_test_silent_cmd "python eval_bp1 = bp_eval(\"$bp_location2\")" "Set breakpoint" 0
254gdb_py_test_silent_cmd "python also_eval_bp1 = bp_also_eval(\"$bp_location2\")" "Set breakpoint" 0
255gdb_py_test_silent_cmd "python never_eval_bp1 = bp_also_eval(\"$end_location\")" "Set breakpoint" 0
256gdb_continue_to_breakpoint "Break at multiply." ".*/$srcfile:$bp_location2.*"
257gdb_test "print i" "3" "Check inferior value matches python accounting"
258gdb_test "python print eval_bp1.inf_i" "3" "Check python accounting matches inferior"
259gdb_test "python print also_eval_bp1.count" "4" \
260 "Check non firing same-location breakpoint eval function was also called at each stop."
261gdb_test "python print eval_bp1.count" "4" \
262 "Check non firing same-location breakpoint eval function was also called at each stop."
263
264delete_breakpoints
265set cond_bp [gdb_get_line_number "Break at multiply."]
266gdb_py_test_silent_cmd "python eval_bp1 = bp_eval(\"$cond_bp\")" "Set breakpoint" 0
267set test_cond {cond $bpnum}
268gdb_test "$test_cond \"foo==3\"" "Cannot set a condition where a Python.*" \
269 "Check you cannot add a CLI condition to a Python breakpoint that" \
270 "has defined stop"
271gdb_py_test_silent_cmd "python eval_bp2 = basic(\"$cond_bp\")" "Set breakpoint" 0
272gdb_py_test_silent_cmd "python eval_bp2.condition = \"1==1\"" "Set a condition" 0
273gdb_py_test_multiple "Construct an eval function" \
274 "python" "" \
275 "def stop_func ():" "" \
276 " return True" "" \
277 "end" ""
278
279gdb_test "python eval_bp2.stop = stop_func" \
280 "RuntimeError: Cannot set 'stop' method.*" \
281 "Assign stop function to a breakpoint that has a condition"
282
283delete_breakpoints
284gdb_breakpoint [gdb_get_line_number "Break at multiply."]
285gdb_py_test_silent_cmd "python check_eval = bp_eval(\"$bp_location2\")" "Set breakpoint" 0
286gdb_test "python print check_eval.count" "0" \
287 "Test that evaluate function has not been yet executed (ie count = 0)"
288gdb_continue_to_breakpoint "Break at multiply." ".*/$srcfile:$bp_location2.*"
289gdb_test "python print check_eval.count" "1" \
290 "Test that evaluate function is run when location also has normal bp"
291
292gdb_py_test_multiple "Sub-class a watchpoint" \
293 "python" "" \
294 "class wp_eval (gdb.Breakpoint):" "" \
295 " def stop (self):" "" \
296 " self.result = gdb.parse_and_eval(\"result\")" "" \
297 " if self.result == 788:" "" \
298 " return True" "" \
299 " return False" "" \
300 "end" ""
301
302delete_breakpoints
303gdb_py_test_silent_cmd "python wp1 = wp_eval (\"result\", type=gdb.BP_WATCHPOINT, wp_class=gdb.WP_WRITE)" "Set watchpoint" 0
304gdb_test "continue" ".*\[Ww\]atchpoint.*result.*Old value =.*New value = 788.*" "Test watchpoint write"
305gdb_test "python print never_eval_bp1.count" "0" \
306 "Check that this unrelated breakpoints eval function was never called."
This page took 0.244715 seconds and 4 git commands to generate.