GDB: trad-frame: Store length of value_bytes in trad_frame_saved_reg
[binutils-gdb.git] / gdb / testsuite / gdb.ada / formatted_ref.exp
blob6f91154a04cb9defd21e025172cfdea30e9847e2
1 # Copyright 2007-2024 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/>.
16 # Author: P. N. Hilfinger, AdaCore Inc.
18 # Note: This test is essentially a transcription of gdb.cp/formatted-ref.exp,
19 # and is thus much more wordy than it needs to be. There are fewer
20 # tests because only a few parameter types in Ada are required to be
21 # passed by reference, and there is no equivalent of &(&x) for reference
22 # values.
23 # This also tests that some other arithmetic operations on references
24 # work properly: condition expression using a reference object as one of its
25 # operand.
27 load_lib "ada.exp"
29 require allow_ada_tests
31 standard_ada_testfile formatted_ref
33 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
34 untested formatted-ref.exp
35 return -1
38 proc get_address { var } {
39 global expect_out
40 global gdb_prompt
42 gdb_test_multiple "print $var'access" "address of $var" {
43 -re "\\$\[0-9\]+ = \\(.*\\) (0x\[0-9a-f\]+).*$gdb_prompt $" {
44 return $expect_out(1,string)
47 return ""
50 proc test_p_x { var val addr } {
51 global gdb_prompt
53 set test "print/x $var"
54 gdb_test_multiple "$test" $test {
55 -re "\\$\[0-9\]+ = [string_to_regexp $val].*$gdb_prompt $" {
56 pass $test
58 -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
59 fail "$test (prints just address)"
61 -re "\\$\[0-9\]+ = 0x\[a-f0-9\]+.*$gdb_prompt $" {
62 fail "$test (prints unexpected address)"
65 return 0
68 proc test_p_x_addr { var addr } {
69 global gdb_prompt
71 foreach attr {access unchecked_access unrestricted_access} {
72 foreach space {"" " "} {
73 set test "print/x $var'$space$attr"
74 gdb_test_multiple $test $test {
75 -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
76 pass $test
78 -re "\\$\[0-9\]+ = 0x\[a-f0-9+\]+.*$gdb_prompt $" {
79 fail "$test (prints unexpected address)"
85 gdb_test "complete print/x $var'unres" "print/x $var'unrestricted_access"
86 gdb_test_no_output "complete print/x $var'abcd"
87 gdb_test "complete print $var'f" "print $var'first"
89 return 0
92 proc test_p_op1_equals_op2 {op1 op2} {
93 set test "print $op1 = $op2"
94 gdb_test $test "\\$\[0-9\]+ = true"
97 clean_restart ${testfile}
99 set bp_location \
100 defs.adb:[gdb_get_line_number "marker here" ${testdir}/defs.adb]
102 # Workaround gcc PR101575.
103 #runto $bp_location
104 gdb_breakpoint "$bp_location"
105 gdb_run_cmd
106 set re "Breakpoint $decimal, defs.f1 \\(.*\\) at .*:$decimal.*"
107 set re_xfail "Breakpoint $decimal, defs__struct1IP \\(\\) at .*:$decimal.*"
108 set ok 1
109 gdb_test_multiple "" "Runto to $bp_location" {
110 -re -wrap $re {
111 if { $ok } {
112 pass $gdb_test_name
113 } else {
114 xfail $gdb_test_name
117 -re -wrap $re_xfail {
118 set ok 0
119 send_gdb "continue\n"
120 exp_continue
124 set s1_address [get_address "s1"]
126 test_p_x "s" "(x => 0xd, y => 0x13)" $s1_address
128 test_p_x_addr "s" $s1_address
130 test_p_op1_equals_op2 "s.x" "13"