]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.mi/mi-var-child-f.exp
Automatic date update in version.in
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-var-child-f.exp
1 # Copyright 2006-2024 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 # Test variable objects treat non-zero offsets in Fortran arrays correctly.
17
18 load_lib mi-support.exp
19 set MIFLAGS "-i=mi"
20 load_lib "fortran.exp"
21
22 require allow_fortran_tests
23
24 standard_testfile array.f90
25
26 if {[gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
27 executable {debug f90}] != ""} {
28 return -1
29 }
30
31 if {[mi_clean_restart $binfile]} {
32 return
33 }
34
35 # Avoid shared lib symbols.
36 mi_gdb_test "-gdb-set auto-solib-add off" "\\^done"
37
38 mi_runto prog_array
39
40 # Avoid libc symbols, in particular the 'array' type.
41 mi_gdb_test "nosharedlibrary" ".*\\^done"
42
43 mi_create_varobj "array" "array" "create local variable array"
44
45
46 # Depending on the compiler being used,
47 # the type names can be printed differently.
48 set int4 [fortran_int4]
49
50 set children [list [list "array.-1" "-1" 2 "$int4 \\(2\\)"] \
51 [list "array.0" "0" 2 "$int4 \\(2\\)"] \
52 [list "array.1" "1" 2 "$int4 \\(2\\)"]]
53
54 mi_list_varobj_children "array" $children "get children of array"
55
56 mi_gdb_test "-var-list-children --all-values array.-1" \
57 "\\^done,numchild=\"2\",children=\\\[child=\{name=\"array.-1.1\",exp=\"1\",numchild=\"0\",value=\"11\",type=\"$int4\"\},child=\{name=\"array.-1.2\",exp=\"2\",numchild=\"0\",value=\"21\",type=\"$int4\"\}\\\],has_more=\"0\"" \
58 "get grandchildren of array (children of first element of second index)"