]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-breakpoint.exp
* symfile.c (auto_solib_limit): Remove.
[thirdparty/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# Start with a fresh gdb.
32clean_restart ${testfile}
33
34# Skip all tests if Python scripting is not enabled.
35if { [skip_python_tests] } { continue }
36
37if ![runto_main] then {
38 fail "Cannot run to main."
39 return 0
40}
41
42global hex decimal
43
44# Initially there should be one breakpoint: main.
45
46gdb_py_test_silent_cmd "python blist = gdb.breakpoints()" "Get Breakpoint List" 0
47gdb_test "python print blist\[0\]" "<gdb.Breakpoint object at $hex>" "Check obj exists"
48gdb_test "python print blist\[0\].location" "main." "Check breakpoint location"
49
50gdb_breakpoint [gdb_get_line_number "Break at multiply."]
51gdb_continue_to_breakpoint "Break at multiply."
52
53# Check that the Python breakpoint code noted the addition of a
54# breakpoint "behind the scenes".
55gdb_py_test_silent_cmd "python blist = gdb.breakpoints()" "Get Breakpoint List" 0
56gdb_test "python print len(blist)" "2" "Check for two breakpoints"
57gdb_test "python print blist\[0\]" "<gdb.Breakpoint object at $hex>" "Check obj exists"
58gdb_test "python print blist\[0\].location" "main." "Check breakpoint location"
59gdb_test "python print blist\[1\]" "<gdb.Breakpoint object at $hex>" "Check obj exists"
60gdb_test "python print blist\[1\].location" "py-breakpoint\.c:41*" "Check breakpoint location"
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"
67gdb_test "print result" "545" "Check expected variable result after 6 iterations"
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
151# Test invisible breakpooints.
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
84f4c1fe
PM
192if ![runto_main] then {
193 fail "Cannot run to main."
194 return 0
195}
196delete_breakpoints
197gdb_py_test_silent_cmd "python wp1 = gdb.Breakpoint (\"result\", type=gdb.BP_WATCHPOINT, wp_class=gdb.WP_WRITE, internal=True )" "Set watchpoint" 0
198gdb_test "info breakpoints" "No breakpoints or watchpoints.*" "Check info breakpoints does not show invisible breakpoints"
199gdb_test "maint info breakpoints" ".*hw watchpoint.*result.*" "Check maint info breakpoints shows invisible breakpoints"
200gdb_test "continue" ".*\[Ww\]atchpoint.*result.*Old value = 0.*New value = 25.*" "Test watchpoint write"