]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-type.exp
Copyright year update in most files of the GDB Project.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-type.exp
CommitLineData
c5a57081 1# Copyright (C) 2009-2012 Free Software Foundation, Inc.
bfd31e71
PM
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
19if $tracelevel then {
20 strace $tracelevel
21}
22
a2c09bd0
DE
23load_lib gdb-python.exp
24
bfd31e71
PM
25set testfile "py-type"
26set srcfile ${testfile}.c
27set binfile ${objdir}/${subdir}/${testfile}
28
999adef4
DE
29if [get_compiler_info not-used c++] {
30 return -1;
31}
32
bfd31e71 33# Build inferior to language specification.
db8e4570
UW
34proc build_inferior {exefile lang} {
35 global srcdir subdir srcfile testfile hex
bfd31e71 36
db8e4570 37 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${exefile}" executable "debug $lang"] != "" } {
bfd31e71
PM
38 untested "Couldn't compile ${srcfile} in $lang mode"
39 return -1
40 }
41}
42
f6bbabf0 43# Restart GDB.
db8e4570
UW
44proc restart_gdb {exefile} {
45 global srcdir subdir srcfile testfile hex
bfd31e71
PM
46
47 gdb_exit
48 gdb_start
49 gdb_reinitialize_dir $srcdir/$subdir
db8e4570 50 gdb_load ${exefile}
bfd31e71
PM
51
52 if ![runto_main ] then {
53 perror "couldn't run to breakpoint"
54 return
55 }
f6bbabf0 56}
bfd31e71 57
f6bbabf0
PM
58# Set breakpoint and run to that breakpoint.
59proc runto_bp {bp} {
bfd31e71
PM
60 gdb_breakpoint [gdb_get_line_number $bp]
61 gdb_continue_to_breakpoint $bp
62}
63
bfd31e71
PM
64proc test_fields {lang} {
65 global gdb_prompt
66
f6b47be4
DE
67 # .fields() of a typedef should still return the underlying field list
68 gdb_test "python print len(gdb.parse_and_eval('ts').type.fields())" "2" \
69 "$lang typedef field list"
70
bfd31e71
PM
71 if {$lang == "c++"} {
72 # Test usage with a class
73 gdb_py_test_silent_cmd "print c" "print value" 1
74 gdb_py_test_silent_cmd "python c = gdb.history (0)" "get value from history" 1
75 gdb_py_test_silent_cmd "python fields = c.type.fields()" "get fields" 1
76 gdb_test "python print len(fields)" "2" "Check number of fields"
77 gdb_test "python print fields\[0\].name" "c" "Check class field c name"
78 gdb_test "python print fields\[1\].name" "d" "Check class field d name"
d839c8a4
TT
79
80 gdb_test "python print c.type == gdb.parse_and_eval('d').type" "False"
81 gdb_test "python print c.type == gdb.parse_and_eval('d').type.fields()\[0\].type" \
82 "True"
bfd31e71
PM
83 }
84
85 # Test normal fields usage in structs.
86 gdb_py_test_silent_cmd "print st" "print value" 1
87 gdb_py_test_silent_cmd "python st = gdb.history (0)" "get value from history" 1
88 gdb_py_test_silent_cmd "python fields = st.type.fields()" "get fields" 1
89 gdb_test "python print len(fields)" "2" "Check number of fields"
90 gdb_test "python print fields\[0\].name" "a" "Check structure field a name"
91 gdb_test "python print fields\[1\].name" "b" "Check structure field b name"
92
7a81bdbf
PK
93 # Test Python mapping behavior of gdb.Type for structs/classes
94 gdb_test "python print len(st.type)" "2" "Check number of fields"
95 gdb_test "python print st.type\['a'\].name" "a" "Check fields lookup by name"
96 gdb_test "python print \[v.bitpos for v in st.type.itervalues()\]" {\[0L, 32L\]} "Check fields iteration over values"
97 gdb_test "python print \[(n, v.bitpos) for (n, v) in st.type.items()\]" {\[\('a', 0L\), \('b', 32L\)\]} "Check fields items list"
98 gdb_test "python print 'a' in st.type" "True" "Check field name exists test"
99 gdb_test "python print 'nosuch' in st.type" "False" "Check field name nonexists test"
77426730
PK
100 gdb_test "python print not not st.type" "True" "Check conversion to bool"
101
102 # Test rejection of mapping operations on scalar types
103 gdb_test "python print len (st.type\['a'\].type)" "TypeError: Type is not a structure, union, or enum type.*"
104 gdb_test "python print st.type\['a'\].type.has_key ('x')" "TypeError: Type is not a structure, union, or enum type.*"
105 gdb_test "python print st.type\['a'\].type.keys ()" "TypeError: Type is not a structure, union, or enum type.*"
106 gdb_test "python print st.type\['a'\].type\['x'\]" "TypeError: Type is not a structure, union, or enum type.*"
107
108 # Test conversion to bool on scalar types
109 gdb_test "python print not not st.type\['a'\].type" "True"
7a81bdbf 110
bfd31e71
PM
111 # Test regression PR python/10805
112 gdb_py_test_silent_cmd "print ar" "print value" 1
113 gdb_py_test_silent_cmd "python ar = gdb.history (0)" "get value from history" 1
114 gdb_test "python fields = ar.type.fields()"
115 gdb_test "python print len(fields)" "1" "Check the number of fields"
116 gdb_test "python print fields\[0\].type" "<range type>" "Check array field type"
702c2711
TT
117
118 gdb_test "python print ar\[0\].cast(ar\[0\].type.array(1))" \
119 ".1, 2." "cast to array with one argument"
120 gdb_test "python print ar\[0\].cast(ar\[0\].type.array(0, 1))" \
121 ".1, 2." "cast to array with two arguments"
d839c8a4
TT
122
123 gdb_test "python print ar\[0\].type == ar\[0\].type" "True"
bfd31e71
PM
124}
125
7a81bdbf
PK
126proc test_enums {} {
127 gdb_py_test_silent_cmd "print e" "print value" 1
128 gdb_py_test_silent_cmd "python e = gdb.history (0)" "get value from history" 1
129 gdb_py_test_silent_cmd "python fields = e.type.fields()" "get value from history" 1
130 gdb_test "python print len(fields)" "3" "Check the number of enum fields"
131 gdb_test "python print fields\[0\].name" "v1" "Check enum field name"
132 gdb_test "python print fields\[1\].name" "v2" "Check enum field name"
133
134 # Ditto but by mapping operations
135 gdb_test "python print len(e.type)" "3" "Check the number of enum fields"
136 gdb_test "python print e.type\['v1'\].name" "v1" "Check enum field lookup by name"
137 gdb_test "python print e.type\['v3'\].name" "v3" "Check enum field lookup by name"
138 gdb_test "python print \[v.bitpos for v in e.type.itervalues()\]" {\[0L, 1L, 2L\]} "Check num fields iteration over values"
139 gdb_test "python print \[(n, v.bitpos) for (n, v) in e.type.items()\]" {\[\('v1', 0L\), \('v2', 1L\), \('v3', 2L\)\]} "Check enum fields items list"
140}
bfd31e71
PM
141proc test_base_class {} {
142 gdb_py_test_silent_cmd "print d" "print value" 1
143 gdb_py_test_silent_cmd "python d = gdb.history (0)" "get value from history" 1
144 gdb_py_test_silent_cmd "python fields = d.type.fields()" "get value from history" 1
145 gdb_test "python print len(fields)" "3" "Check the number of fields"
146 gdb_test "python print fields\[0\].is_base_class" "True" "Check base class"
147 gdb_test "python print fields\[1\].is_base_class" "False" "Check base class"
148}
149
361ae042
PM
150proc test_range {} {
151
152 # Test a valid range request.
153 gdb_py_test_silent_cmd "print ar" "print value" 1
154 gdb_py_test_silent_cmd "python ar = gdb.history (0)" "get value from history" 1
155 gdb_test "python print len(ar.type.range())" "2" "Check correct tuple length"
156 gdb_test "python print ar.type.range()\[0\]" "0" "Check low range"
157 gdb_test "python print ar.type.range()\[1\]" "1" "Check high range"
158
159 # Test a range request on a ranged type.
160 gdb_py_test_silent_cmd "print ar" "print value" 1
161 gdb_py_test_silent_cmd "python ar = gdb.history (0)" "get value from history" 1
162 gdb_py_test_silent_cmd "python fields = ar.type.fields()" "get fields" 1
163 gdb_test "python print fields\[0\].type.range()\[0\]" "0" "Check range type low bound"
164 gdb_test "python print fields\[0\].type.range()\[1\]" "1" "Check range type high bound"
165
166 # Test where a range does not exist.
167 gdb_py_test_silent_cmd "print st" "print value" 1
168 gdb_py_test_silent_cmd "python st = gdb.history (0)" "get value from history" 1
169 gdb_test "python print st.type.range()" "RuntimeError: This type does not have a range.*" "Check range for non ranged type."
170}
171
326fd672
TT
172# Some tests of template arguments.
173proc test_template {} {
174 gdb_py_test_silent_cmd \
175 "python ttype = gdb.parse_and_eval('temvar').type" \
176 "get type of temvar" \
177 1
178
179 gdb_test "python print ttype.template_argument(0)" "D"
180 gdb_test "python print isinstance(ttype.template_argument(0), gdb.Type)" \
181 "True"
999adef4 182
326fd672 183 # The next two tests require a GCC that emits DW_TAG_template_*.
999adef4
DE
184 # GCC 4.4 does not emit it, 4.5 and 6 do emit it.
185 set have_older_gcc 0
186 if {[test_compiler_info {gcc-[0-3]-*}]
187 || [test_compiler_info {gcc-4-[0-4]-*}]} {
188 set have_older_gcc 1
189 }
190 if $have_older_gcc { setup_xfail *-*-* }
326fd672 191 gdb_test "python print ttype.template_argument(1)" "23"
999adef4 192 if $have_older_gcc { setup_xfail *-*-* }
326fd672
TT
193 gdb_test "python print isinstance(ttype.template_argument(1), gdb.Value)" \
194 "True"
999adef4 195
72225e17
JK
196 if {[test_compiler_info {gcc-[0-3]-*}]
197 || [test_compiler_info {gcc-4-[0-5]-*}]} {
198 setup_xfail "gcc/46955" *-*-*
199 }
326fd672
TT
200 gdb_test "python print ttype.template_argument(2)" "&C::c"
201}
361ae042 202
bfd31e71 203# Perform C Tests.
db8e4570
UW
204build_inferior "${binfile}" "c"
205restart_gdb "${binfile}"
7d1bf85c 206
f6bbabf0
PM
207# Skip all tests if Python scripting is not enabled.
208if { [skip_python_tests] } { continue }
7d1bf85c 209
f6bbabf0 210runto_bp "break to inspect struct and array."
bfd31e71 211test_fields "c"
7a81bdbf 212test_enums
bfd31e71
PM
213
214# Perform C++ Tests.
db8e4570
UW
215build_inferior "${binfile}-cxx" "c++"
216restart_gdb "${binfile}-cxx"
f6bbabf0 217runto_bp "break to inspect struct and array."
bfd31e71
PM
218test_fields "c++"
219test_base_class
361ae042 220test_range
326fd672 221test_template
7a81bdbf 222test_enums