]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/type-opaque.exp
Automatic Copyright Year update after running gdb/copyright.py
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / type-opaque.exp
1 # Copyright 2004-2022 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 # Test resolving of an opaque type from the loaded shared library.
17
18 if {[skip_shlib_tests]} {
19 return -1
20 }
21
22 standard_testfile type-opaque-main.c
23
24 set libfile type-opaque-lib
25 set libsrc "${srcdir}/${subdir}/${libfile}.c"
26 set libobj [standard_output_file ${libfile}.so]
27 set execsrc "${srcdir}/${subdir}/${srcfile}"
28
29 remote_exec build "rm -f ${binfile}"
30
31 # get the value of gcc_compiled
32 if [get_compiler_info] {
33 return -1
34 }
35
36 if { [gdb_compile_shlib $libsrc $libobj {debug}] != ""
37 || [gdb_compile $execsrc ${binfile} executable \
38 [list debug shlib=${libobj}]] != "" } {
39 return -1
40 }
41
42 clean_restart ${binfile}
43 gdb_load_shlib ${libobj}
44
45 if ![runto_main] then {
46 return 0
47 }
48
49
50 # DWARF3: An incomplete structure, union or class type is represented by
51 # a structure, union or class entry that does not have a byte size attribute
52 # and that has a DW_AT_declaration attribute.
53
54
55 proc body { struct } {
56 global gdb_prompt
57
58
59 # <1><15f>: Abbrev Number: 8 (DW_TAG_structure_type)
60 # DW_AT_name : libtype_opaque
61 # DW_AT_declaration : 1
62
63 set name "opaque $struct type resolving"
64 gdb_test_multiple "ptype pointer_${struct}_opaque" $name \
65 {
66 -re "libfield_opaque.*$gdb_prompt $" {
67 pass $name
68 }
69 }
70
71
72 # <1><9e>: Abbrev Number: 2 (DW_TAG_structure_type)
73 # DW_AT_name : libtype_empty
74 # DW_AT_byte_size : 0
75 # DW_AT_decl_file : 1
76 # DW_AT_decl_line : 25
77
78 set name "empty $struct type resolving"
79 gdb_test_multiple "ptype pointer_${struct}_empty" $name \
80 {
81 -re "\\{\[ \t\r\n\]*<no data fields>\[ \t\r\n\]*\\}.*$gdb_prompt $" {
82 pass $name
83 }
84 -re "libfield_empty.*$gdb_prompt $" {
85 fail $name
86 }
87 }
88
89
90 # <1><b0>: Abbrev Number: 3 (DW_TAG_structure_type)
91 # DW_AT_sibling : <e3>
92 # DW_AT_name : libtype_filled
93 # DW_AT_byte_size : 4
94 # DW_AT_decl_file : 1
95 # DW_AT_decl_line : 29
96 # <2><c7>: Abbrev Number: 4 (DW_TAG_member)
97 # DW_AT_name : mainfield_filled
98 # DW_AT_decl_file : 1
99 # DW_AT_decl_line : 30
100 # DW_AT_type : <e3>
101 # DW_AT_data_member_location: 2 byte block: 23 0 (DW_OP_plus_uconst: 0)
102
103 set name "filled $struct type resolving"
104 gdb_test_multiple "ptype pointer_${struct}_filled" $name \
105 {
106 -re "mainfield_filled.*$gdb_prompt $" {
107 pass $name
108 }
109 -re "libfield_filled.*$gdb_prompt $" {
110 fail $name
111 }
112 }
113
114
115 }
116
117
118 body struct
119 body union