]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-breakpoint.exp
gold/
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-breakpoint.exp
CommitLineData
adc36818
PM
1# Copyright (C) 2010 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# 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
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 conditional setting.
95set bp_location1 [gdb_get_line_number "Break at multiply."]
96gdb_py_test_silent_cmd "python bp1 = gdb.Breakpoint (\"$bp_location1\")" "Set breakpoint" 0
97gdb_continue_to_breakpoint "Break at multiply."
98gdb_py_test_silent_cmd "python bp1.condition = \"i == 5\"" "Set breakpoint" 0
99gdb_test "python print bp1.condition" "i == 5" "Test conditional has been set"
100gdb_continue_to_breakpoint "Break at multiply."
101gdb_test "print i" "5" "Test conditional breakpoint stopped after five iterations"
102gdb_py_test_silent_cmd "python bp1.condition = None" "Clear condition" 0
103gdb_test "python print bp1.condition" "None" "Test conditional read"
104gdb_continue_to_breakpoint "Break at multiply."
105gdb_test "print i" "6" "Test breakpoint stopped after six iterations"
106
107# Test commands.
108gdb_breakpoint [gdb_get_line_number "Break at add."]
109set test {commands $bpnum}
110gdb_test_multiple $test $test { -re "\r\n>$" { pass $test } }
111set test {print "Command for breakpoint has been executed."}
112gdb_test_multiple $test $test { -re "\r\n>$" { pass $test } }
113set test {print result}
114gdb_test_multiple $test $test { -re "\r\n>$" { pass $test } }
115gdb_test "end"
116
117gdb_py_test_silent_cmd "python blist = gdb.breakpoints()" "Get Breakpoint List" 0
118gdb_test "python print blist\[len(blist)-1\].commands" "print \"Command for breakpoint has been executed.\".*print result"
119
120# Watchpoints
121# Start with a fresh gdb.
122clean_restart ${testfile}
123
e0756905
UW
124# Disable hardware watchpoints if necessary.
125if [target_info exists gdb,no_hardware_watchpoints] {
126 gdb_test_no_output "set can-use-hw-watchpoints 0" ""
127}
128
adc36818
PM
129if ![runto_main] then {
130 fail "Cannot run to main."
131 return 0
132}
133
134gdb_py_test_silent_cmd "python wp1 = gdb.Breakpoint (\"result\", type=gdb.BP_WATCHPOINT, wp_class=gdb.WP_WRITE )" "Set watchpoint" 0
468b1aa7 135gdb_test "continue" ".*\[Ww\]atchpoint.*result.*Old value = 0.*New value = 25.*main.*" "Test watchpoint write"
adc36818
PM
136
137
138