1 # Copyright 2020-2023 Free Software Foundation, Inc.
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.
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.
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/>.
17 # This test can only be run on targets which support DWARF-2 and use gas.
18 if {![dwarf2_support]} {
22 standard_testfile main-foo.c .S
24 # Make some DWARF for the test.
25 set asm_file [standard_output_file $srcfile2]
26 Dwarf::assemble $asm_file {
29 {DW_AT_language @DW_LANG_C}
34 {signature 0x0000000000000001 ref_sig8}
38 {MACRO_AT_func {main}}
45 {DW_AT_language @DW_LANG_C}
50 {signature 0x0000000000000002 ref_sig8}
59 tu {} 0x0000000000000001 the_type_i {
61 declare_labels int_type
63 the_type_i: structure_type {
74 {encoding @DW_ATE_signed}
80 tu {} 0x0000000000000002 the_type_j {
82 declare_labels int_type
84 the_type_j: structure_type {
95 {encoding @DW_ATE_signed}
102 if { [prepare_for_testing "failed to prepare" ${testfile} \
103 [list $srcfile $asm_file] {nodebug}] } {
109 "type = struct s {" \
114 "type = struct s {" \
122 gdb_test "ptype struct s" $struct_s_i_re \
123 "struct s with int i"
126 gdb_continue_to_breakpoint "foo"
128 gdb_test "ptype struct s" $struct_s_j_re \
129 "struct s with int j"