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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
|
# Copyright (C) 1999, 2000 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 2 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, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Please email any bugs, comments, and/or additions to this file to:
# bug-gdb@prep.ai.mit.edu
#
# Test Machine interface (MI) operations for disassembly.
#
# The goal is not to test gdb functionality, which is done by other tests,
# but to verify the correct output response to MI operations.
#
load_lib mi-support.exp
gdb_exit
if [mi_gdb_start] {
continue
}
set testfile "basics"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
}
mi_delete_breakpoints
mi_gdb_reinitialize_dir $srcdir/$subdir
mi_gdb_load ${binfile}
proc test_breakpoints_creation_and_listing {} {
global mi_gdb_prompt
global srcfile
global hex
# Insert some breakpoints and list them
# Also, disable some so they do not interfere with other tests
# Tests:
# -break-insert
# -break-list
# -break-disable
# -break-info
mi_gdb_test "200-break-insert main" \
"200\\^done,bkpt=\{number=\"1\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"32\",times=\"0\"\}" \
"break-insert operation"
mi_gdb_test "204-break-list" \
"204\\^done,BreakpointTable=\{hdr=\{.*\},bkpt=\{number=\"1\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"32\",times=\"0\"\}\}" \
"list of breakpoints"
}
proc test_running_the_program {} {
global mi_gdb_prompt
global hex
# Run the program without args
# Tests:
# -exec-run
# mi_gdb_test cannot be used for asynchronous commands because there are
# two prompts involved and this can lead to a race condition.
# FIXME: We are accepting a duplicate file and line info temporarely.
# The following is equivalent to a send_gdb "000-exec-run\n"
mi_run_cmd
# The running part has been checked already by mi_run_cmd
gdb_expect {
-re "\[\r\n\]*000\\*stopped,reason=\"breakpoint-hit\",bkptno=\"1\",thread-id=\"0\",frame=\{addr=\"$hex\",func=\"main\",args=\{\},file=\".*basics.c\",line=\"32\"\}\r\n$mi_gdb_prompt$" {
pass "run to main"
}
-re ".*$mi_gdb_prompt$" {fail "run to main (2)"}
timeout {fail "run to main (timeout 2)"}
}
}
proc test_disassembly_only {} {
global mi_gdb_prompt
global hex
# Test disassembly more only for the current function.
# Tests:
# -data-disassembly $pc 0 0 -1
# -data-disassembly main 0 0 -1
# -data-disassembly $pc $pc+8 0 -1
# -data-disassembly callee2 0 0 -1
mi_gdb_test "print/x \$pc" "" ""
mi_gdb_test "111-data-disassemble \$pc 0 0 -1" \
"111\\^done,asm_insns=\{\{address=\"$hex <main>\",inst=\".*\"\},\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\},\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\},.*\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}" \
"data-disassemble from pc assembly only"
mi_gdb_test "222-data-disassemble main 0 0 -1" \
"222\\^done,asm_insns=\{\{address=\"$hex <main>\",inst=\".*\"\},\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}" \
"data-disassemble main assembly only"
mi_gdb_test "333-data-disassemble \$pc \$pc+8 0 -1" \
"333\\^done,asm_insns=\{\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\},\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}" \
"data-disassemble range assembly only"
mi_gdb_test "444-data-disassemble callee2 0 0 -1" \
"444\\^done,asm_insns=\{\{address=\"$hex <callee2\[0-9\]*>\",inst=\".*\"\},.*\{address=\"$hex <callee2\\+\[0-9\]*>\",inst=\".*\"\}\}" \
"data-disassemble callee2 assembly only"
}
proc test_disassembly_lines_limit {} {
global mi_gdb_prompt
global hex
# Test disassembly more only for the current function.
# Tests:
# -data-disassembly $pc 0 0 2
# -data-disassembly main 0 0 1
# -data-disassembly main 0 0 0
# -data-disassembly $pc $pc+8 0 99
# -data-disassembly $pc $pc+12 0 2
mi_gdb_test "print/x \$pc" "" ""
mi_gdb_test "100-data-disassemble \$pc 0 0 2" \
"100\\^done,asm_insns=\{\{address=\"$hex <main\[0-9\]*>\",inst=\".*\"\},\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}" \
"data-disassemble from pc two lines - assembly only"
mi_gdb_test "200-data-disassemble main 0 0 1" \
"200\\^done,asm_insns=\{\{address=\"$hex <main\[0-9\]*>\",inst=\".*\"\}\}" \
"data-disassemble main 1 line - assembly only"
mi_gdb_test "300-data-disassemble main 0 0 0" \
"300\\^done,asm_insns=\{\}" \
"data-disassemble main zero lines - assembly only"
mi_gdb_test "400-data-disassemble \$pc \$pc+8 0 99" \
"400\\^done,asm_insns=\{\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\},\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}" \
"data-disassemble lines bigger than range - assembly only"
mi_gdb_test "500-data-disassemble \$pc \$pc+12 0 2" \
"500\\^done,asm_insns=\{\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\},\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}" \
"data-disassemble lines less than range - assembly only"
}
proc test_disassembly_mixed {} {
global mi_gdb_prompt
global hex
global decimal
# Test disassembly more only for the current function.
# Tests:
# -data-disassembly main 0 1 -1
# -data-disassembly $pc $pc+8 1 -1
# -data-disassembly callee2 0 1 -1
mi_gdb_test "002-data-disassemble callee2 0 1 -1" \
"002\\^done,asm_insns=\{src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\{address=\"$hex <callee2\[0-9\]*>\",inst=\".*\"\}\}\},src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{.*\{address=\"$hex <callee2\\+\[0-9\]*>\",inst=\".*\"\}\}\}\}" \
"data-disassemble callee2 assembly mixed"
#
# In mixed mode, the lowest level of granularity is the source line.
# So we are going to get the disassembly for the source line at
# which we are now.
#
mi_gdb_test "003-data-disassemble \$pc \$pc+8 1 -1" \
"003\\^done,asm_insns=\{src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}.*\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}\}\}" \
"data-disassemble range assembly mixed"
mi_gdb_test "004-data-disassemble callee2 0 1 -1" \
"004\\^done,asm_insns=\{src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\{address=\"$hex <callee2\[0-9\]*>\",inst=\".*\"\}\}\},.*src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{.*\{address=\"$hex <callee2\\+\[0-9\]*>\",inst=\".*\"\}\}\}\}" \
"data-disassemble callee2 assembly mixed"
}
proc test_disassembly_mixed_lines_limit {} {
global mi_gdb_prompt
global hex
global decimal
# Test disassembly more only for the current function.
# Tests:
# -data-disassembly $pc 0 1 2
# -data-disassembly main 0 1 1
# -data-disassembly main 0 1 0
# -data-disassembly $pc $pc+4 1 99
# -data-disassembly $pc $pc+12 1 2
mi_gdb_test "print/x \$pc" "" ""
mi_gdb_test "100-data-disassemble \$pc 0 1 2" \
"100\\^done,asm_insns=\{src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\{address=\"$hex <main\[0-9\]*>\",inst=\".*\"\}\}\},src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}\}\}" \
"data-disassemble from pc two lines - assembly mixed"
mi_gdb_test "200-data-disassemble main 0 1 1" \
"200\\^done,asm_insns=\{src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\{address=\"$hex <main\[0-9\]*>\",inst=\".*\"\}\}\}\}" \
"data-disassemble main 1 line - assembly mixed"
mi_gdb_test "300-data-disassemble main 0 1 0" \
"300\\^done,asm_insns=\{src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\}\}\}" \
"data-disassemble main zero lines - assembly mixed"
mi_gdb_test "400-data-disassemble \$pc \$pc+4 1 99" \
"400\\^done,asm_insns=\{src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}.*\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}\}\}" \
"data-disassemble lines bigger than range - assembly mixed"
mi_gdb_test "500-data-disassemble \$pc \$pc+12 1 2" \
"500\\^done,asm_insns=\{src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\},\{address=\"$hex <main\\+\[0-9\]*>\",inst=\".*\"\}\}\}\}" \
"data-disassemble lines less than range - assembly mixed"
}
proc test_disassembly_bogus_args {} {
global mi_gdb_prompt
global hex
# Test that bogus input to disassembly command is rejected.
# Tests:
# -data-disassembly 0 0 0 0
# -data-disassembly 0 0 0
# -data-disassembly 0 0
# -data-disassembly 0
mi_gdb_test "123-data-disassemble 0 0 0 0" \
".*123\\^error,msg=\"No function contains specified address\"" \
"data-disassemble bogus arguments"
mi_gdb_test "321-data-disassemble 0 0 0" \
"321\\^error,msg=\"mi_cmd_disassemble: Usage: start_address end_address mixed_mode num_of_lines.\"" \
"data-disassemble wrong num of args (3)"
mi_gdb_test "456-data-disassemble 0 0" \
"456\\^error,msg=\"mi_cmd_disassemble: Usage: start_address end_address mixed_mode num_of_lines.\"" \
"data-disassemble wrong num of args (2)"
mi_gdb_test "789-data-disassemble 0" \
"789\\^error,msg=\"mi_cmd_disassemble: Usage: start_address end_address mixed_mode num_of_lines.\"" \
"data-disassemble wrong num of args (1)"
}
proc test_disassembly_mixed_from_pc {} {
global mi_gdb_prompt
global hex
global decimal
# Test disassembly more only for the current function.
# Tests:
# -data-disassembly $pc 0 1 -1
mi_gdb_test "200-break-insert callee2" \
"200\\^done,bkpt=\{number=\"2\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"callee2\",file=\".*basics.c\",line=\"22\",times=\"0\"\}" \
"break-insert operation for mixed"
send_gdb "123-exec-continue\n"
gdb_expect {
-re "123\\^running\r\n$mi_gdb_prompt" {
gdb_expect {
-re "\[\r\n\]*123\\*stopped,reason=\"breakpoint-hit\",bkptno=\"2\",thread-id=\"0\",frame=\{addr=\"$hex\",func=\"callee2\",args=\{.*\},file=\".*basics.c\",line=\"22\"\}\r\n$mi_gdb_prompt$" {
pass "run to callee2"
}
-re ".*$mi_gdb_prompt$" {fail "run to callee2 (2)"}
timeout {fail "run to callee2 (timeout 2)"}
}
}
-re ".*$mi_gdb_prompt$" {fail "continue to callee2 (1)"}
timeout {fail "continue to callee2 (timeout 1)"}
}
mi_gdb_test "001-data-disassemble \$pc 0 1 -1" \
"001\\^done,asm_insns=\{src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{\{address=\"$hex <callee2\[0-9\]*>\",inst=\".*\"\}\}\},src_and_asm_line=\{line=\"$decimal\",file=\".*basics.c\",line_asm_insn=\{.*\{address=\"$hex <callee2\\+\[0-9\]*>\",inst=\".*\"\}\}\}\}" \
"data-disassemble from pc assembly mixed"
}
test_breakpoints_creation_and_listing
test_running_the_program
test_disassembly_only
test_disassembly_mixed
test_disassembly_bogus_args
test_disassembly_lines_limit
test_disassembly_mixed_lines_limit
test_disassembly_mixed_from_pc
mi_gdb_exit
return 0
# Local variables:
# change-log-default-name: "ChangeLog-mi"
# End:
|