1 # Copyright 2018-2019 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/>.
18 standard_ada_testfile bla
20 set csrcfile ${srcdir}/${subdir}/${testdir}/${cfile}.c
21 set cobject [standard_output_file ${cfile}.o]
23 gdb_compile "${csrcfile}" "${cobject}" object [list debug]
24 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug additional_flags=-largs additional_flags=${cobject} additional_flags=-margs]] != "" } {
28 clean_restart ${testfile}
30 set bp_location [gdb_get_line_number "STOP" ${testdir}/foo.c]
31 runto "foo.c:$bp_location"
33 gdb_test_no_output "set print frame-arguments all"
35 # Here is the scenario:
36 # - Once stopped in a C function, with language_mode set to auto, print
37 # backtrace, we should see the Ada frame arguments printed using Ada
39 # - Set language to C, then check that printing backtrace shows the Ada
40 # frame arguments using C syntax.
41 # - Set language back to auto, check language mode value, then print
42 # backtrace, we should see Ada frame arguments printed using Ada C
45 gdb_test "show lang" \
46 "The current source language is \"auto; currently c\"." \
47 "show language when set to 'auto; c'"
50 "#1 $hex in pck\\.call_me \\(s=\"test\"\\).*" \
51 "backtrace with auto: c"
53 gdb_test_no_output "set language c" \
54 "Set current source language to \"manual; currently c\"."
56 gdb_test "show lang" \
57 "The current source language is \"c\"." \
58 "show language when set to 'c'"
61 "#1 $hex in pck\\.call_me \\(s={P_ARRAY = $hex, P_BOUNDS = $hex}\\).*" \
62 "backtrace with language forced to 'c'"
64 gdb_test_no_output "set language auto" \
65 "Set current source language to \"auto; currently c\"."
67 gdb_test "show lang" \
68 "The current source language is \"auto; currently c\"." \
69 "show language when set back to 'auto; c'"
72 "#1 $hex in pck\\.call_me \\(s=\"test\"\\).*" \
73 "backtrace with language back to 'auto; c'"