2012-02-21 Pedro Alves <palves@redhat.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi2-watch.exp
1 # Copyright 1999-2004, 2007-2012 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 #
17 # Test essential Machine interface (MI) operations
18 #
19 # Verify that, using the MI, we can run a simple program and perform basic
20 # debugging activities like: insert breakpoints, run the program,
21 # step, next, continue until it ends and, last but not least, quit.
22 #
23 # The goal is not to test gdb functionality, which is done by other tests,
24 # but to verify the correct output response to MI operations.
25 #
26
27 load_lib mi-support.exp
28 set MIFLAGS "-i=mi2"
29
30 gdb_exit
31 if [mi_gdb_start] {
32 continue
33 }
34
35 set testfile "basics"
36 set srcfile ${testfile}.c
37 set binfile ${objdir}/${subdir}/mi2-watch
38 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
39 untested mi2-watch.exp
40 return -1
41 }
42
43 proc test_watchpoint_creation_and_listing {type} {
44 global mi_gdb_prompt
45 global srcfile
46 global hex
47
48 set line_callee4_head [gdb_get_line_number "callee4 ("]
49 set line_callee4_body [expr $line_callee4_head + 2]
50
51 # Insert a watchpoint and list
52 # Tests:
53 # -break-watch C
54 # -break-list
55
56 mi_gdb_test "111-break-watch C" \
57 "111\\^done,wpt=\{number=\"2\",exp=\"C\"\}" \
58 "break-watch operation"
59
60 mi_gdb_test "222-break-list" \
61 "222\\\^done,BreakpointTable=\{nr_rows=\".\",nr_cols=\".\",hdr=\\\[\{width=\".*\",alignment=\".*\",col_name=\"number\",colhdr=\"Num\"\}.*colhdr=\"Type\".*colhdr=\"Disp\".*colhdr=\"Enb\".*colhdr=\"Address\".*colhdr=\"What\".*\\\],body=\\\[bkpt=\{number=\"2\",type=\".*watchpoint\",disp=\"keep\",enabled=\"y\",what=\"C\",times=\"0\",original-location=\"C\"\}\\\]\}" \
62 "list of watchpoints"
63
64 }
65
66 # UNUSED at the time
67 proc test_awatch_creation_and_listing {type} {
68 global mi_gdb_prompt
69 global srcfile
70 global hex
71
72 set line_main_head [gdb_get_line_number "main ("]
73 set line_main_body [expr $line_main_head + 2]
74
75 # Insert an access watchpoint and list it
76 # Tests:
77 # -break-watch -a A
78 # -break-list
79
80 mi_gdb_test "333-break-watch -a A" \
81 "333\\^done,bkpt=\{number=\"1\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_main_body\"\}" \
82 "break-watch -a operation"
83
84 mi_gdb_test "444-break-list" \
85 "444\\^done,BreakpointTable=\{.*,hdr=\\\[.*\\\],body=\\\[bkpt=\{number=\"3\",type=\"watchpoint\",disp=\"del\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"$line_main_body\",times=\"0\"\},.*\}\\\]\}" \
86 "list of watchpoints awatch"
87
88 mi_gdb_test "777-break-delete 3" \
89 "777\\^done" \
90 "delete access watchpoint"
91 }
92
93 # UNUSED at the time
94 proc test_rwatch_creation_and_listing {type} {
95 global mi_gdb_prompt
96 global srcfile
97 global hex
98
99 set line_main_head [gdb_get_line_number "main ("]
100 set line_main_body [expr $line_main_head + 2]
101
102 # Insert a read watchpoint and list it.
103 # Tests:
104 # -break-insert -r B
105 # -break-list
106
107 mi_gdb_test "200-break-watch -r C" \
108 "200\\^done,bkpt=\{number=\"5\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"callee4\",file=\".*basics.c\",line=\"$line_main_body\",times=\"0\"\}" \
109 "break-insert -r operation"
110
111 mi_gdb_test "300-break-list" \
112 "300\\^done,BreakpointTable=\{.*,hdr=\\\[.*\\\],body=\\\[bkpt=\{number=\"5\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"$line_main_body\",times=\"0\"\},.*\}\\\}\}" \
113 "list of breakpoints"
114
115 mi_gdb_test "177-break-delete 4" \
116 "177\\^done" \
117 "delete read watchpoint"
118 }
119
120 proc test_watchpoint_triggering {type} {
121 global mi_gdb_prompt
122 global hex
123
124 set line_callee4_return_0 [gdb_get_line_number "return 0;"]
125 set line_callee3_head [gdb_get_line_number "callee3 ("]
126 set line_callee3_close_brace [expr $line_callee3_head + 3]
127
128 # Continue execution until the watchpoint is reached, continue again,
129 # to see the watchpoint go out of scope.
130 # Does:
131 # -exec-continue (Here wp triggers)
132 # -exec-continue (Here wp goes out of scope)
133
134 mi_execute_to "exec-continue" "watchpoint-trigger" "callee4" "" \
135 ".*basics.c" $line_callee4_return_0 \
136 {"" "wpt=\{number=\"2\",exp=\"C\"\},value=\{old=\".*\",new=\"3\"\}"} \
137 "watchpoint trigger"
138
139 if { $type == "sw" } {
140 setup_xfail *-*-*
141 }
142 mi_execute_to "exec-continue" "watchpoint-scope" "callee3" ".*" \
143 ".*basics.c" $line_callee3_close_brace \
144 {"" "wpnum=\"2\""} \
145 "watchpoint trigger"
146 clear_xfail *-*-*
147 }
148
149 proc test_watchpoint_all {type} { with_test_prefix "$type" {
150 upvar srcdir srcdir
151 upvar subdir subdir
152 upvar binfile binfile
153
154 mi_delete_breakpoints
155 mi_gdb_reinitialize_dir $srcdir/$subdir
156 mi_gdb_load ${binfile}
157
158 mi_runto callee4
159 test_watchpoint_creation_and_listing $type
160 #test_rwatch_creation_and_listing $type
161 #test_awatch_creation_and_listing $type
162 test_watchpoint_triggering $type
163 }}
164
165 # Run the tests twice, once using software watchpoints...
166 mi_gdb_test "567-gdb-set can-use-hw-watchpoints 0" \
167 "567\\^done" \
168 "hw watchpoints toggle (1)"
169 test_watchpoint_all sw
170
171 mi_gdb_exit
172
173 # ... and unless requested otherwise...
174 if [target_info exists gdb,no_hardware_watchpoints] {
175 return 0
176 }
177
178 mi_gdb_start
179
180 # ... once using hardware watchpoints (if available).
181 mi_gdb_test "890-gdb-set can-use-hw-watchpoints 1" \
182 "890\\^done" \
183 "hw watchpoints toggle (2)"
184 test_watchpoint_all hw
185
186 mi_gdb_exit
187 return 0
This page took 0.033909 seconds and 4 git commands to generate.