py-type.exp: Do not run tests if binary fails to build
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-type.exp
1 # Copyright (C) 2009-2015 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 # of exposing types to Python.
18
19 load_lib gdb-python.exp
20
21 standard_testfile
22
23 if [get_compiler_info c++] {
24 return -1
25 }
26
27 # Build inferior to language specification.
28 proc build_inferior {exefile lang} {
29 global srcdir subdir srcfile testfile hex
30
31 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${exefile}" executable "debug $lang"] != "" } {
32 untested "Couldn't compile ${srcfile} in $lang mode"
33 return -1
34 }
35
36 return 0
37 }
38
39 # Restart GDB.
40 proc restart_gdb {exefile} {
41 global srcdir subdir srcfile testfile hex
42
43 gdb_exit
44 gdb_start
45 gdb_reinitialize_dir $srcdir/$subdir
46 gdb_load ${exefile}
47
48 if ![runto_main ] then {
49 perror "couldn't run to breakpoint"
50 return
51 }
52 }
53
54 # Set breakpoint and run to that breakpoint.
55 proc runto_bp {bp} {
56 gdb_breakpoint [gdb_get_line_number $bp]
57 gdb_continue_to_breakpoint $bp
58 }
59
60 proc test_fields {lang} {
61 with_test_prefix "test_fields" {
62 global gdb_prompt
63
64 # .fields() of a typedef should still return the underlying field list
65 gdb_test "python print (len(gdb.parse_and_eval('ts').type.fields()))" "2" \
66 "$lang typedef field list"
67
68 if {$lang == "c++"} {
69 # Test usage with a class
70 gdb_py_test_silent_cmd "print (c)" "print value (c)" 1
71 gdb_py_test_silent_cmd "python c = gdb.history (0)" "get value (c) from history" 1
72 gdb_py_test_silent_cmd "python fields = c.type.fields()" "get fields from c.type" 1
73 gdb_test "python print (len(fields))" "2" "Check number of fields (c)"
74 gdb_test "python print (fields\[0\].name)" "c" "Check class field c name"
75 gdb_test "python print (fields\[1\].name)" "d" "Check class field d name"
76
77 gdb_test "python print (c.type == gdb.parse_and_eval('d').type)" "False"
78 gdb_test "python print (c.type == gdb.parse_and_eval('d').type.fields()\[0\].type)" \
79 "True"
80 }
81
82 # Test normal fields usage in structs.
83 gdb_py_test_silent_cmd "print (st)" "print value (st)" 1
84 gdb_py_test_silent_cmd "python st = gdb.history (0)" "get value (st) from history" 1
85 gdb_py_test_silent_cmd "python fields = st.type.fields()" "get fields from st.type" 1
86 gdb_test "python print (len(fields))" "2" "Check number of fields (st)"
87 gdb_test "python print (fields\[0\].name)" "a" "Check structure field a name"
88 gdb_test "python print (fields\[1\].name)" "b" "Check structure field b name"
89
90 # Test that unamed fields have 'None' for name.
91 gdb_py_test_silent_cmd "python ss = gdb.parse_and_eval('ss')" "init ss" 1
92 gdb_py_test_silent_cmd "python ss_fields = ss.type.fields()" \
93 "get fields from ss.type" 1
94 gdb_test "python print(len(ss_fields))" "2" "Check length of ss_fields"
95 gdb_test "python print(ss_fields\[0\].name is None)" "True" \
96 "Check ss_fields\[0\].name"
97 gdb_test "python print(ss_fields\[1\].name is None)" "True" \
98 "Check ss_fields\[1\].name"
99 # Regression test for
100 # http://sourceware.org/bugzilla/show_bug.cgi?id=12070.
101 gdb_test "python print ('type' in dir(fields\[0\]))" "True" \
102 "Check that dir includes name"
103
104 # Test Python mapping behavior of gdb.Type for structs/classes
105 gdb_test "python print (len(st.type))" "2" "Check number of fields (st.type)"
106 gdb_test "python print (st.type\['a'\].name)" "a" "Check fields lookup by name"
107 gdb_test "python print (\[v.bitpos for v in st.type.itervalues()\])" {\[0L?, 32L?\]} "Check fields iteration over values"
108 gdb_test "python print (\[(n, v.bitpos) for (n, v) in st.type.items()\])" {\[\('a', 0L?\), \('b', 32L?\)\]} "Check fields items list"
109 gdb_test "python print ('a' in st.type)" "True" "Check field name exists test"
110 gdb_test "python print ('nosuch' in st.type)" "False" "Check field name nonexists test"
111 gdb_test "python print (not not st.type)" "True" "Check conversion to bool"
112
113 # Test rejection of mapping operations on scalar types
114 gdb_test "python print (len (st.type\['a'\].type))" "TypeError: Type is not a structure, union, or enum type.*"
115 gdb_test "python print (st.type\['a'\].type.has_key ('x'))" "TypeError: Type is not a structure, union, or enum type.*"
116 gdb_test "python print (st.type\['a'\].type.keys ())" "TypeError: Type is not a structure, union, or enum type.*"
117 gdb_test "python print (st.type\['a'\].type\['x'\])" "TypeError: Type is not a structure, union, or enum type.*"
118
119 # Test conversion to bool on scalar types
120 gdb_test "python print (not not st.type\['a'\].type)" "True"
121
122 # Test regression PR python/10805
123 gdb_py_test_silent_cmd "print (ar)" "print value (ar)" 1
124 gdb_py_test_silent_cmd "python ar = gdb.history (0)" "get value (ar) from history" 1
125 gdb_test "python fields = ar.type.fields()"
126 gdb_test "python print (len(fields))" "1" "Check the number of fields"
127 gdb_test "python print (fields\[0\].type)" "<range type>" "Check array field type"
128
129 # Test gdb.Type.array.
130 gdb_test "python print (ar\[0\].cast(ar\[0\].type.array(1)))" \
131 ".1, 2." "cast to array with one argument"
132 gdb_test "python print (ar\[0\].cast(ar\[0\].type.array(0, 1)))" \
133 ".1, 2." "cast to array with two arguments"
134
135 gdb_test "python print (ar\[0\].type == ar\[0\].type)" "True"
136
137 # Test gdb.Type.vector.
138 # Note: vectors cast differently than arrays. Here ar[0] is replicated
139 # for the size of the vector.
140 gdb_py_test_silent_cmd "print (vec_data_1)" "print value (vec_data_1)" 1
141 gdb_py_test_silent_cmd "python vec_data_1 = gdb.history (0)" "get value (vec_data_1) from history" 1
142
143 gdb_py_test_silent_cmd "print (vec_data_2)" "print value (vec_data_2)" 1
144 gdb_py_test_silent_cmd "python vec_data_2 = gdb.history (0)" "get value (vec_data_2) from history" 1
145
146 gdb_py_test_silent_cmd "python vec1 = vec_data_1.cast(ar\[0\].type.vector(1))" "set vec1" 1
147 gdb_test "python print (vec1)" ".1, 1." "cast to vector with one argument"
148 gdb_py_test_silent_cmd "python vec2 = vec_data_1.cast(ar\[0\].type.vector(0, 1))" "set vec2" 1
149 gdb_test "python print (vec2)" ".1, 1." "cast to vector with two arguments"
150 gdb_test "python print (vec1 == vec2)" "True"
151 gdb_py_test_silent_cmd "python vec3 = vec_data_2.cast(ar\[0\].type.vector(1))" "set vec3" 1
152 gdb_test "python print (vec1 == vec3)" "False"
153 }
154 }
155
156 proc test_enums {} {
157 with_test_prefix "test_enum" {
158 gdb_py_test_silent_cmd "print (e)" "print value (e)" 1
159 gdb_py_test_silent_cmd "python (e) = gdb.history (0)" "get value (e) from history" 1
160 gdb_py_test_silent_cmd "python fields = e.type.fields()" "extract type fields from e" 1
161 gdb_test "python print (len(fields))" "3" "Check the number of enum fields"
162 gdb_test "python print (fields\[0\].name)" "v1" "Check enum field\[0\] name"
163 gdb_test "python print (fields\[1\].name)" "v2" "Check enum field\[1\]name"
164
165 # Ditto but by mapping operations
166 gdb_test "python print (len(e.type))" "3" "Check the number of type fields"
167 gdb_test "python print (e.type\['v1'\].name)" "v1" "Check enum field lookup by name (v1)"
168 gdb_test "python print (e.type\['v3'\].name)" "v3" "Check enum field lookup by name (v3)"
169 gdb_test "python print (\[v.enumval for v in e.type.itervalues()\])" {\[0L?, 1L?, 2L?\]} "Check num fields iteration over values"
170 gdb_test "python print (\[(n, v.enumval) for (n, v) in e.type.items()\])" {\[\('v1', 0L?\), \('v2', 1L?\), \('v3', 2L?\)\]} "Check enum fields items list"
171 }
172 }
173
174 proc test_base_class {} {
175 with_test_prefix "test_base_class" {
176 gdb_py_test_silent_cmd "print (d)" "print value (d)" 1
177 gdb_py_test_silent_cmd "python d = gdb.history (0)" "get value (d) from history" 1
178 gdb_py_test_silent_cmd "python fields = d.type.fields()" "extract type fields from d" 1
179 gdb_test "python print (len(fields))" "3" "Check the number of fields"
180 gdb_test "python print (fields\[0\].is_base_class)" "True" "Check base class (fields\[0\])"
181 gdb_test "python print (fields\[1\].is_base_class)" "False" "Check base class (fields\[1\])"
182 }
183 }
184
185 proc test_range {} {
186 with_test_prefix "test_range" {
187 with_test_prefix "on ranged value" {
188 # Test a valid range request.
189 gdb_py_test_silent_cmd "print (ar)" "print value (ar)" 1
190 gdb_py_test_silent_cmd "python ar = gdb.history (0)" "get value (ar) from history" 1
191 gdb_test "python print (len(ar.type.range()))" "2" "Check correct tuple length"
192 gdb_test "python print (ar.type.range()\[0\])" "0" "Check range low bound"
193 gdb_test "python print (ar.type.range()\[1\])" "1" "Check range high bound"
194 }
195
196 with_test_prefix "on ranged type" {
197 # Test a range request on a ranged type.
198 gdb_py_test_silent_cmd "print (ar)" "print value (ar)" 1
199 gdb_py_test_silent_cmd "python ar = gdb.history (0)" "get value (ar) from history" 1
200 gdb_py_test_silent_cmd "python fields = ar.type.fields()" "get fields" 1
201 gdb_test "python print (fields\[0\].type.range()\[0\])" "0" "Check range low bound"
202 gdb_test "python print (fields\[0\].type.range()\[1\])" "1" "Check range high bound"
203 }
204
205 with_test_prefix "on unranged value" {
206 # Test where a range does not exist.
207 gdb_py_test_silent_cmd "print (st)" "print value (st)" 1
208 gdb_py_test_silent_cmd "python st = gdb.history (0)" "get value (st) from history" 1
209 gdb_test "python print (st.type.range())" "RuntimeError: This type does not have a range.*" "Check range for non ranged type."
210 }
211 }
212 }
213
214 # Some tests of template arguments.
215 proc test_template {} {
216 gdb_py_test_silent_cmd \
217 "python ttype = gdb.parse_and_eval('temvar').type" \
218 "get type of temvar" \
219 1
220
221 gdb_test "python print (ttype.template_argument(0))" "D"
222 gdb_test "python print (isinstance(ttype.template_argument(0), gdb.Type))" \
223 "True"
224
225 # The next two tests require a GCC that emits DW_TAG_template_*.
226 # GCC 4.4 does not emit it, 4.5 and 6 do emit it.
227 set have_older_gcc 0
228 if {[test_compiler_info {gcc-[0-3]-*}]
229 || [test_compiler_info {gcc-4-[0-4]-*}]} {
230 set have_older_gcc 1
231 }
232 if $have_older_gcc { setup_xfail *-*-* }
233 gdb_test "python print (ttype.template_argument(1))" "23"
234 if $have_older_gcc { setup_xfail *-*-* }
235 gdb_test "python print (isinstance(ttype.template_argument(1), gdb.Value))" \
236 "True"
237
238 if {[test_compiler_info {gcc-[0-3]-*}]
239 || [test_compiler_info {gcc-4-[0-5]-*}]} {
240 setup_xfail "gcc/46955" *-*-*
241 }
242 gdb_test "python print (ttype.template_argument(2))" "&C::c"
243 }
244
245 # Perform C Tests.
246 if { [build_inferior "${binfile}" "c"] == 0 } {
247 restart_gdb "${binfile}"
248
249 # Skip all tests if Python scripting is not enabled.
250 if { [skip_python_tests] } { continue }
251
252 gdb_test "python print(gdb.lookup_type('char').array(1, 0))" \
253 "char \\\[0\\\]"
254
255 gdb_test "python print(gdb.lookup_type('char').array(1, -1))" \
256 "Array length must not be negative.*"
257
258 gdb_test "python print(gdb.lookup_type('int').optimized_out())" \
259 "<optimized out>"
260
261 with_test_prefix "lang_c" {
262 runto_bp "break to inspect struct and array."
263 test_fields "c"
264 test_enums
265 }
266 }
267
268
269 # Perform C++ Tests.
270 if { [build_inferior "${binfile}-cxx" "c++"] == 0 } {
271 restart_gdb "${binfile}-cxx"
272 with_test_prefix "lang_cpp" {
273 runto_bp "break to inspect struct and array."
274 test_fields "c++"
275 test_base_class
276 test_range
277 test_template
278 test_enums
279 }
280 }
This page took 0.035978 seconds and 4 git commands to generate.