[gdb/testsuite] Accept new complex print style in mixed-lang-stack.exp
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.fortran / mixed-lang-stack.exp
CommitLineData
6b8c53f2
AB
1# Copyright 2020 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 test covers some basic functionality for debugging mixed
17# Fortran, C, and C++ applications. Features tested include examining
18# the backtrace, and printing frame arguments in frames of different
19# languages.
20#
21# One important aspect of this test is that we set the language in
22# turn to auto, fortran, c, and c++, and carry out the full test in
23# each case to ensure that trying to print objects or types from one
24# language, while GDB's language is set to another, doesn't crash GDB.
25
26if {[skip_fortran_tests]} { return -1 }
27
28standard_testfile mixed-lang-stack.c mixed-lang-stack.cpp mixed-lang-stack.f90
29
30if {[prepare_for_testing_full "failed to prepare" \
31 [list ${binfile} {debug f90 additional_flags=-lstdc++} \
32 $srcfile {debug} \
33 $srcfile2 {debug c++} \
34 $srcfile3 {debug f90}]]} {
35 return -1
36}
37
38# Runs the test program and examins the stack. LANG is a string, the
39# value to pass to GDB's 'set language ...' command.
40proc run_tests { lang } {
41 with_test_prefix "lang=${lang}" {
42 global binfile hex
43
44 clean_restart ${binfile}
45
46 if ![runto_main] {
47 untested "could not run to main"
48 return -1
49 }
50
51 gdb_breakpoint "breakpt"
52 gdb_continue_to_breakpoint "breakpt"
53
54 if { $lang == "c" || $lang == "c++" } {
55 gdb_test "set language c" \
56 "Warning: the current language does not match this frame."
57 } else {
58 gdb_test_no_output "set language $lang"
59 }
60
61 # Check the backtrace.
62 set bt_stack [multi_line \
63 "#0\\s+breakpt \\(\\) at \[^\r\n\]+" \
64 "#1\\s+$hex in mixed_func_1h \\(\\) at \[^\r\n\]+" \
65 "#2\\s+$hex in mixed_func_1g \\(obj=\\.\\.\\.\\) at \[^\r\n\]+" \
66 "#3\\s+$hex in mixed_func_1f \\(\\) at \[^\r\n\]+" \
67 "#4\\s+$hex in mixed_func_1e \\(\\) at \[^\r\n\]+" \
68 "#5\\s+$hex in mixed_func_1d \\(\[^\r\n\]+\\) at \[^\r\n\]+" \
69 "#6\\s+$hex in mixed_func_1c \\(\[^\r\n\]+\\) at \[^\r\n\]+" \
70 "#7\\s+$hex in mixed_func_1b \\(\[^\r\n\]+\\) at \[^\r\n\]+" \
71 "#8\\s+$hex in mixed_func_1a \\(\\) at \[^\r\n\]+" \
72 "#9\\s+$hex in mixed_stack_main \\(\\) at \[^\r\n\]+" \
73 "#10\\s+$hex in main \\(\[^\r\n\]+\\) at .*" ]
74 gdb_test "bt" $bt_stack
75
76 # Check the language for frame #0.
77 gdb_test "info frame" "source language fortran\..*" \
78 "info frame in frame #0"
79
80 # Move up to the C++ frames and check the frame state, print a
81 # C++ object.
82 gdb_test "frame 2" "#2\\s+$hex in mixed_func_1g .*" \
83 "select frame #2"
84 gdb_test "info frame" "source language c\\+\\+\..*" \
85 "info frame in frame #2"
86 if { $lang == "fortran" } {
5935fd15 87 set obj_pattern " = \\( base_one = \\( num1 = 1, num2 = 2, num3 = 3 \\), base_two = \\( string = $hex 'Something in C\\+\\+\\\\000', val = 3.5 \\), xxx = 9, yyy = 10.5 \\)"
6b8c53f2 88 } else {
5935fd15 89 set obj_pattern " = \\{<base_one> = \\{num1 = 1, num2 = 2, num3 = 3\\}, <base_two> = \\{string = $hex \"Something in C\\+\\+\", val = 3.5\\}, xxx = 9, yyy = 10.5\\}"
6b8c53f2
AB
90 }
91 gdb_test "print obj" "${obj_pattern}"
92
93 # Move up the stack a way, and check frame and the frame
94 # arguments.
95 gdb_test "frame 5" "#5\\s+$hex in mixed_func_1d .*" \
96 "select frame #5"
97 gdb_test "info frame" "source language fortran\..*" \
98 "info frame in frame #5"
99
100 gdb_test "up" "#6\\s+$hex in mixed_func_1c .*" \
101 "up to frame #6"
102 gdb_test "info frame" "source language c\..*" \
103 "info frame in frame #6"
104
105 if { $lang == "fortran" } {
106 set d_pattern "\\(4,5\\)"
107 set f_pattern "$hex 'abcdef\\\\000'"
108 } else {
cc77ed24 109 set d_pattern "4 \\+ 5i"
6b8c53f2
AB
110 set f_pattern "$hex \"abcdef\""
111 }
112
113 set args_pattern [multi_line \
114 "a = 1" \
115 "b = 2" \
116 "c = 3" \
117 "d = ${d_pattern}" \
118 "f = ${f_pattern}" \
119 "g = $hex" ]
120
121 gdb_test "info args" $args_pattern \
122 "info args in frame #6"
123 if { $lang == "fortran" } {
124 set g_pattern " = \\( a = 1\\.5, b = 2\\.5 \\)"
125 } else {
126 set g_pattern " = \\{a = 1\\.5, b = 2\\.5\\}"
127 }
128 gdb_test "print *g" "${g_pattern}" \
129 "print object pointed to by g"
130
131 gdb_test "up" "#7\\s+$hex in mixed_func_1b .*" \
132 "up to frame #7"
133 gdb_test "info frame" "source language fortran\..*" \
134 "info frame in frame #7"
135
136 if { $lang == "c" || $lang == "c++" } {
cc77ed24 137 set d_pattern "4 \\+ 5i"
6b8c53f2
AB
138 set e_pattern "\"abcdef\""
139 set g_pattern "\{a = 1.5, b = 2.5\}"
140 } else {
141 set d_pattern "\\(4,5\\)"
142 set e_pattern "'abcdef'"
143 set g_pattern "\\( a = 1.5, b = 2.5 \\)"
144 }
145
146 set args_pattern [multi_line \
147 "a = 1" \
148 "b = 2" \
149 "c = 3" \
150 "d = ${d_pattern}" \
151 "e = ${e_pattern}" \
152 "g = ${g_pattern}" \
153 "_e = 6" ]
154
155 gdb_test "info args" $args_pattern \
156 "info args in frame #7"
157 }
158}
159
160run_tests "auto"
161run_tests "fortran"
162run_tests "c"
163run_tests "c++"
This page took 0.034783 seconds and 4 git commands to generate.