]> Git Repo - binutils.git/blob - gdb/testsuite/gdb.ctf/multi.exp
Automatic date update in version.in
[binutils.git] / gdb / testsuite / gdb.ctf / multi.exp
1 # Copyright 2021-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 # This file is a subset of ptype.exp written by Rob Savoye. ([email protected])
17
18 if [skip_ctf_tests] {
19     unsupported "no CTF debug format support, or CTF disabled in GDB"
20     return 0
21 }
22
23 standard_testfile ctf-a.c ctf-b.c ctf-c.c
24
25 # Using `-gctf` generates full-fledged CTF debug information.
26 set opts {}
27 lappend opts additional_flags=-gctf
28 lappend opts ldflags=-Wl,--export-dynamic
29 lappend opts ldflags=-Wl,--strip-debug
30 lappend opts nowarning
31
32 if { [prepare_for_testing "failed to prepare" ${testfile} \
33           [list $srcfile $srcfile2 $srcfile3] \
34           $opts] } {
35     return 0
36 }
37
38 # Same thing with struct and union.
39 gdb_test "ptype struct A" "type = struct A \{\[\r\n\]+\[ \t\]+struct B \\*b;\[\r\n\]+\[ \t\]+struct A \\*next;\[\r\n\]+\}.*" "ptype structure A"
40 gdb_test "ptype struct B" "type = struct B \{\[\r\n\]+\[ \t\]+struct C \\*c;\[\r\n\]+\[ \t\]+int \\wombat;\[\r\n\]+\}.*" "ptype structure B"
41 gdb_test "ptype struct C" "type = struct C \{\[\r\n\]+\[ \t\]+struct A \\*a;\[\r\n\]+\[ \t\]+int b;\[\r\n\]+\}.*" "ptype structure C"
This page took 0.031831 seconds and 4 git commands to generate.