]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.ada/mi_variant.exp
Simplify ada_lookup_encoded_symbol
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / mi_variant.exp
CommitLineData
1d506c26 1# Copyright 2020-2024 Free Software Foundation, Inc.
adfb9815
TT
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
16load_lib "ada.exp"
17load_lib "gdb-python.exp"
18
74dcf082 19require allow_ada_tests
7a82e903 20
adfb9815
TT
21standard_ada_testfile pkg
22
23load_lib mi-support.exp
24set MIFLAGS "-i=mi"
25
26foreach_with_prefix scenario {none all minimal} {
27 set flags {debug}
28 if {$scenario != "none"} {
29 lappend flags additional_flags=-fgnat-encodings=$scenario
30 }
31
5ae3df22 32 if {[gdb_compile_ada "${srcfile}" "${binfile}-${scenario}" executable $flags] != ""} {
adfb9815
TT
33 return -1
34 }
35
5ae3df22 36 mi_clean_restart $binfile-$scenario
adfb9815 37
b75d55d4 38 if {[mi_runto_main] < 0} {
adfb9815
TT
39 return 0
40 }
41
42 set bp_location [gdb_get_line_number "STOP" ${testdir}/pkg.adb]
43 mi_continue_to_line \
44 "pkg.adb:$bp_location" \
45 "stop at start of main Ada procedure"
46
47 mi_gdb_test "-var-create r * r" \
48 "\\^done,name=\"r\",numchild=\"1\",.*" \
49 "create r varobj"
50
51 set bp_location [gdb_get_line_number "STOP2" ${testdir}/pkg.adb]
52 mi_continue_to_line \
53 "pkg.adb:$bp_location" \
54 "stop at second breakpoint"
55
56 mi_gdb_test "-var-update 1 r" \
57 "\\^done.*name=\"r\",.*new_num_children=\"2\",.*" \
58 "update r varobj"
59}