]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.ada/ptype_tagged_param.exp
ba21e7b8e3c432058e952473f93081abf476e0e8
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / ptype_tagged_param.exp
1 # Copyright 2010-2023 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 load_lib "ada.exp"
17
18 require allow_ada_tests
19
20 standard_ada_testfile foo
21
22 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
23 return -1
24 }
25
26 set has_runtime_debug_info [gnat_runtime_has_debug_info]
27
28 clean_restart ${testfile}
29
30 if {![runto "pck.adb:20"]} {
31 return -1
32 }
33
34 # With some versions of the compiler, identifying the runtime type of
35 # S can only be done when we have the debug info for the GNAT runtime.
36 set ordinary [multi_line \
37 "type = <ref> new pck.shape with record" \
38 " r: integer;" \
39 "end record"]
40 set nodebug [multi_line \
41 "type = <ref> tagged record" \
42 " x: integer;" \
43 " y: integer;" \
44 "end record"]
45
46 gdb_test_multiple "ptype s" "ptype s" {
47 -re -wrap $ordinary {
48 pass $gdb_test_name
49 }
50 -re -wrap $nodebug {
51 if {!$has_runtime_debug_info} {
52 xfail "$gdb_test_name (no debug info)"
53 } else {
54 fail $gdb_test_name
55 }
56 }
57 }