1 |
24 |
jeremybenn |
# Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008
|
2 |
|
|
# Free Software Foundation, Inc.
|
3 |
|
|
|
4 |
|
|
# This program is free software; you can redistribute it and/or modify
|
5 |
|
|
# it under the terms of the GNU General Public License as published by
|
6 |
|
|
# the Free Software Foundation; either version 3 of the License, or
|
7 |
|
|
# (at your option) any later version.
|
8 |
|
|
#
|
9 |
|
|
# This program is distributed in the hope that it will be useful,
|
10 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
12 |
|
|
# GNU General Public License for more details.
|
13 |
|
|
#
|
14 |
|
|
# You should have received a copy of the GNU General Public License
|
15 |
|
|
# along with this program. If not, see .
|
16 |
|
|
|
17 |
|
|
#
|
18 |
|
|
# Test essential Machine interface (MI) operations
|
19 |
|
|
#
|
20 |
|
|
# Verify that stack commands work.
|
21 |
|
|
|
22 |
|
|
# The goal is not to test gdb functionality, which is done by other tests,
|
23 |
|
|
# but to verify the correct output response to MI operations.
|
24 |
|
|
#
|
25 |
|
|
|
26 |
|
|
load_lib mi-support.exp
|
27 |
|
|
set MIFLAGS "-i=mi2"
|
28 |
|
|
|
29 |
|
|
gdb_exit
|
30 |
|
|
if [mi_gdb_start] {
|
31 |
|
|
continue
|
32 |
|
|
}
|
33 |
|
|
|
34 |
|
|
set testfile "mi-stack"
|
35 |
|
|
set srcfile ${testfile}.c
|
36 |
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
37 |
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
|
38 |
|
|
untested mi2-stack.exp
|
39 |
|
|
return -1
|
40 |
|
|
}
|
41 |
|
|
|
42 |
|
|
mi_delete_breakpoints
|
43 |
|
|
mi_gdb_reinitialize_dir $srcdir/$subdir
|
44 |
|
|
mi_gdb_reinitialize_dir $srcdir/$subdir
|
45 |
|
|
mi_gdb_load ${binfile}
|
46 |
|
|
|
47 |
|
|
proc test_stack_frame_listing {} {
|
48 |
|
|
global mi_gdb_prompt
|
49 |
|
|
global hex fullname_syntax srcfile
|
50 |
|
|
|
51 |
|
|
set line_callee4_head [gdb_get_line_number "callee4 ("]
|
52 |
|
|
set line_callee4_body [expr $line_callee4_head + 2]
|
53 |
|
|
|
54 |
|
|
# Obtain a stack trace
|
55 |
|
|
# Tests:
|
56 |
|
|
# -stack-list-frames
|
57 |
|
|
# -stack-list-frames 1 1
|
58 |
|
|
# -stack-list-frames 1 3
|
59 |
|
|
# -stack-info-frame
|
60 |
|
|
|
61 |
|
|
mi_gdb_test "231-stack-list-frames" \
|
62 |
|
|
"231\\^done,stack=\\\[frame=\{level=\"0\",addr=\"$hex\",func=\"callee4\",file=\".*${srcfile}\",fullname=\"${fullname_syntax}${srcfile}\",line=\"$line_callee4_body\"\},frame=\{level=\"1\",addr=\"$hex\",func=\"callee3\",.*\},frame=\{level=\"2\",addr=\"$hex\",func=\"callee2\",.*\},frame=\{level=\"3\",addr=\"$hex\",func=\"callee1\",.*\},frame=\{level=\"4\",addr=\"$hex\",func=\"main\",.*\}\\\]" \
|
63 |
|
|
"stack frame listing"
|
64 |
|
|
mi_gdb_test "232-stack-list-frames 1 1" \
|
65 |
|
|
"232\\^done,stack=\\\[frame=\{level=\"1\",addr=\"$hex\",func=\"callee3\",.*\}\\\]" \
|
66 |
|
|
"stack frame listing 1 1"
|
67 |
|
|
mi_gdb_test "233-stack-list-frames 1 3" \
|
68 |
|
|
"233\\^done,stack=\\\[frame=\{level=\"1\",addr=\"$hex\",func=\"callee3\",.*\},frame=\{level=\"2\",addr=\"$hex\",func=\"callee2\",.*\},frame=\{level=\"3\",addr=\"$hex\",func=\"callee1\",.*\}\\\]" \
|
69 |
|
|
"stack frame listing 1 3"
|
70 |
|
|
|
71 |
|
|
mi_gdb_test "234-stack-list-frames 1" \
|
72 |
|
|
"&.*234\\^error,msg=\"mi_cmd_stack_list_frames: Usage.*FRAME_LOW FRAME_HIGH.*\"" \
|
73 |
|
|
"stack frame listing wrong"
|
74 |
|
|
|
75 |
|
|
mi_gdb_test "235-stack-info-frame" \
|
76 |
|
|
"235\\^done,frame=\{level=\"0\",addr=\"$hex\",func=\"callee4\",file=\".*${srcfile}\",fullname=\"${fullname_syntax}${srcfile}\",line=\"$line_callee4_body\"\}" \
|
77 |
|
|
"selected frame listing"
|
78 |
|
|
|
79 |
|
|
mi_gdb_test "236-stack-list-frames 1 300" \
|
80 |
|
|
"236\\^done,stack=\\\[frame=\{level=\"1\",addr=\"$hex\",func=\"callee3\",.*\},frame=\{level=\"2\",addr=\"$hex\",func=\"callee2\",.*\},frame=\{level=\"3\",addr=\"$hex\",func=\"callee1\",.*\}\\\]" \
|
81 |
|
|
"stack frame listing 1 300"
|
82 |
|
|
}
|
83 |
|
|
|
84 |
|
|
proc test_stack_args_listing {} {
|
85 |
|
|
global mi_gdb_prompt
|
86 |
|
|
global hex
|
87 |
|
|
|
88 |
|
|
# Obtain lists for args for the stack frames
|
89 |
|
|
# Tests:
|
90 |
|
|
# -stack-list-arguments 0
|
91 |
|
|
# -stack-list-arguments 0 1 1
|
92 |
|
|
# -stack-list-arguments 0 1 3
|
93 |
|
|
# -stack-list-arguments 1
|
94 |
|
|
# -stack-list-arguments 1 1 1
|
95 |
|
|
# -stack-list-arguments 1 1 3
|
96 |
|
|
# -stack-list-arguments
|
97 |
|
|
|
98 |
|
|
mi_gdb_test "231-stack-list-arguments 0" \
|
99 |
|
|
"231\\^done,stack-args=\\\[frame=\{level=\"0\",args=\\\[\\\]\},frame=\{level=\"1\",args=\\\[name=\"strarg\"\\\]\},frame=\{level=\"2\",args=\\\[name=\"intarg\",name=\"strarg\"\\\]\},frame=\{level=\"3\",args=\\\[name=\"intarg\",name=\"strarg\",name=\"fltarg\"\\\]\},frame=\{level=\"4\",args=\\\[\\\]\}\\\]" \
|
100 |
|
|
"stack args listing 0"
|
101 |
|
|
|
102 |
|
|
mi_gdb_test "232-stack-list-arguments 0 1 1" \
|
103 |
|
|
"232\\^done,stack-args=\\\[frame=\{level=\"1\",args=\\\[name=\"strarg\"\\\]\}\\\]" \
|
104 |
|
|
"stack args listing 0 1 1"
|
105 |
|
|
|
106 |
|
|
mi_gdb_test "233-stack-list-arguments 0 1 3" \
|
107 |
|
|
"233\\^done,stack-args=\\\[frame=\{level=\"1\",args=\\\[name=\"strarg\"\\\]\},frame=\{level=\"2\",args=\\\[name=\"intarg\",name=\"strarg\"\\\]\},frame=\{level=\"3\",args=\\\[name=\"intarg\",name=\"strarg\",name=\"fltarg\"\\\]\}\\\]" \
|
108 |
|
|
"stack args listing 0 1 3"
|
109 |
|
|
|
110 |
|
|
mi_gdb_test "231-stack-list-arguments 1" \
|
111 |
|
|
"231\\^done,stack-args=\\\[frame=\{level=\"0\",args=\\\[\\\]\},frame=\{level=\"1\",args=\\\[\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\}\\\]\},frame=\{level=\"2\",args=\\\[\{name=\"intarg\",value=\"2\"\},\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\}\\\]\},frame=\{level=\"3\",args=\\\[\{name=\"intarg\",value=\"2\"\},\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\},\{name=\"fltarg\",value=\"3.5\"\}\\\]\},frame=\{level=\"4\",args=\\\[\\\]\}\\\]" \
|
112 |
|
|
"stack args listing 1"
|
113 |
|
|
|
114 |
|
|
mi_gdb_test "232-stack-list-arguments 1 1 1" \
|
115 |
|
|
"232\\^done,stack-args=\\\[frame=\{level=\"1\",args=\\\[\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\}\\\]\}\\\]" \
|
116 |
|
|
"stack args listing 1 1 1"
|
117 |
|
|
|
118 |
|
|
mi_gdb_test "233-stack-list-arguments 1 1 3" \
|
119 |
|
|
"233\\^done,stack-args=\\\[frame=\{level=\"1\",args=\\\[\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\}\\\]\},frame=\{level=\"2\",args=\\\[\{name=\"intarg\",value=\"2\"\},\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\}\\\]\},frame=\{level=\"3\",args=\\\[\{name=\"intarg\",value=\"2\"\},\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\},\{name=\"fltarg\",value=\"3.5\"\}\\\]\}\\\]" \
|
120 |
|
|
"stack args listing 1 1 3"
|
121 |
|
|
|
122 |
|
|
mi_gdb_test "234-stack-list-arguments" \
|
123 |
|
|
"&.*234\\^error,msg=\"mi_cmd_stack_list_args: Usage.*PRINT_VALUES.*FRAME_LOW FRAME_HIGH.*\"" \
|
124 |
|
|
"stack args listing wrong"
|
125 |
|
|
|
126 |
|
|
mi_gdb_test "235-stack-list-arguments 1 1 300" \
|
127 |
|
|
"235\\^done,stack-args=\\\[frame=\{level=\"1\",args=\\\[\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\}\\\]\},frame=\{level=\"2\",args=\\\[\{name=\"intarg\",value=\"2\"\},\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\}\\\]\},frame=\{level=\"3\",args=\\\[\{name=\"intarg\",value=\"2\"\},\{name=\"strarg\",value=\"$hex \\\\\"A string argument.\\\\\"\"\},\{name=\"fltarg\",value=\"3.5\"\}\\\]\},frame=\{level=\"4\",args=\\\[\\\]\}\\\]" \
|
128 |
|
|
"stack args listing 1 1 300"
|
129 |
|
|
}
|
130 |
|
|
|
131 |
|
|
proc test_stack_info_depth {} {
|
132 |
|
|
global mi_gdb_prompt
|
133 |
|
|
global hex
|
134 |
|
|
|
135 |
|
|
# Obtain depth of stack
|
136 |
|
|
# Tests:
|
137 |
|
|
# -stack-info-depth
|
138 |
|
|
# -stack-info-depth 3
|
139 |
|
|
# -stack-info-depth 99
|
140 |
|
|
|
141 |
|
|
mi_gdb_test "231-stack-info-depth" \
|
142 |
|
|
"231\\^done,depth=\"5\"" \
|
143 |
|
|
"stack info-depth"
|
144 |
|
|
|
145 |
|
|
mi_gdb_test "231-stack-info-depth 3" \
|
146 |
|
|
"231\\^done,depth=\"3\"" \
|
147 |
|
|
"stack info-depth 3"
|
148 |
|
|
|
149 |
|
|
mi_gdb_test "231-stack-info-depth 99" \
|
150 |
|
|
"231\\^done,depth=\"5\"" \
|
151 |
|
|
"stack info-depth 99"
|
152 |
|
|
|
153 |
|
|
mi_gdb_test "231-stack-info-depth 99 99" \
|
154 |
|
|
"&.*231\\^error,msg=\"mi_cmd_stack_info_depth: Usage: .MAX_DEPTH.\"" \
|
155 |
|
|
"stack info-depth wrong usage"
|
156 |
|
|
}
|
157 |
|
|
|
158 |
|
|
proc test_stack_locals_listing {} {
|
159 |
|
|
global mi_gdb_prompt
|
160 |
|
|
global hex fullname_syntax srcfile
|
161 |
|
|
|
162 |
|
|
# Obtain lists for locals for the stack frames
|
163 |
|
|
# Tests:
|
164 |
|
|
# -stack-list-locals 0 (--no-values)
|
165 |
|
|
# -stack-list-locals 1 (--all-values)
|
166 |
|
|
# -stack-list-locals 2 (--simple-values)
|
167 |
|
|
# -stack-list-arguments
|
168 |
|
|
|
169 |
|
|
mi_gdb_test "232-stack-list-locals 0" \
|
170 |
|
|
"232\\^done,locals=\\\[name=\"A\",name=\"B\",name=\"C\",name=\"D\"\\\]" \
|
171 |
|
|
"stack locals listing of names"
|
172 |
|
|
|
173 |
|
|
set line_callee4_return_0 [gdb_get_line_number "return 0;"]
|
174 |
|
|
|
175 |
|
|
# step until A, B, C, D have some reasonable values.
|
176 |
|
|
send_gdb "-exec-next 4\n"
|
177 |
|
|
gdb_expect {
|
178 |
|
|
-re "\\^running\r\n${mi_gdb_prompt}\\*stopped,reason=\"end-stepping-range\",thread-id=\"\[01\]\",frame=\{addr=\"$hex\",func=\"callee4\",args=\\\[\\\],file=\".*${srcfile}\",fullname=\"${fullname_syntax}${srcfile}\",line=\"$line_callee4_return_0\"\}\r\n$mi_gdb_prompt$" {
|
179 |
|
|
pass "next's in callee4"
|
180 |
|
|
}
|
181 |
|
|
timeout { fail "next in callee4 (timeout)" }
|
182 |
|
|
}
|
183 |
|
|
|
184 |
|
|
mi_gdb_test "232-stack-list-locals 1" \
|
185 |
|
|
"232\\^done,locals=\\\[\{name=\"A\",value=\"1\"\},\{name=\"B\",value=\"2\"\},\{name=\"C\",value=\"3\"\},\{name=\"D\",value=\"\\{0, 1, 2\\}\"\}\\\]" \
|
186 |
|
|
"stack locals listing of names and values"
|
187 |
|
|
|
188 |
|
|
mi_gdb_test "232-stack-list-locals 2" \
|
189 |
|
|
"232\\^done,locals=\\\[\{name=\"A\",type=\"int\",value=\"1\"\},\{name=\"B\",type=\"int\",value=\"2\"\},\{name=\"C\",type=\"int\",value=\"3\"\},\{name=\"D\",type=\"int \\\[3\\\]\"\}\\\]" \
|
190 |
|
|
"stack locals listing, simple types: names and values, complex type: names and types"
|
191 |
|
|
|
192 |
|
|
mi_gdb_test "234-stack-list-locals" \
|
193 |
|
|
"&.*234\\^error,msg=\"mi_cmd_stack_list_locals: Usage.*PRINT_VALUES.*\"" \
|
194 |
|
|
"stack locals listing wrong"
|
195 |
|
|
|
196 |
|
|
mi_gdb_test "232-stack-select-frame 1" \
|
197 |
|
|
"232\\^done" \
|
198 |
|
|
"stack select frame 1"
|
199 |
|
|
|
200 |
|
|
mi_gdb_test "232-stack-list-locals 1" \
|
201 |
|
|
"232\\^done,locals=\\\[\\\]" \
|
202 |
|
|
"stack locals listing for new frame"
|
203 |
|
|
|
204 |
|
|
mi_gdb_test "232-stack-list-locals 1" \
|
205 |
|
|
"232\\^done,locals=\\\[\\\]" \
|
206 |
|
|
"stack locals for same frame (level 1)"
|
207 |
|
|
}
|
208 |
|
|
|
209 |
|
|
mi_runto callee4
|
210 |
|
|
test_stack_frame_listing
|
211 |
|
|
test_stack_args_listing
|
212 |
|
|
test_stack_locals_listing
|
213 |
|
|
test_stack_info_depth
|
214 |
|
|
|
215 |
|
|
|
216 |
|
|
mi_gdb_exit
|
217 |
|
|
return 0
|