1 # Copyright 2007, 2008 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
30 set testdir "formatted_ref"
31 set testfile "${testdir}/formatted_ref"
32 set srcfile ${srcdir}/${subdir}/${testfile}.adb
33 set binfile ${objdir}/${subdir}/${testfile}
36 file mkdir ${objdir}/${subdir}/${testdir}
37 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
38 untested formatted-ref.exp
42 proc get_address { var } {
46 send_gdb "print $var'access\n"
48 -re "\\$\[0-9\]+ = \\(.*\\) (0x\[0-9a-f\]+).*$gdb_prompt $" {
49 return $expect_out(1,string)
52 perror "couldn't find address of $var"
58 proc test_p_x { var val addr } {
61 set test "print/x $var"
62 gdb_test_multiple "$test" $test {
63 -re "\\$\[0-9\]+ = [string_to_regexp $val].*$gdb_prompt $" {
66 -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
67 fail "$test (prints just address)"
69 -re "\\$\[0-9\]+ = 0x\[a-f0-9\]+.*$gdb_prompt $" {
70 fail "$test (prints unexpected address)"
76 proc test_p_x_addr { var addr } {
79 set test "print/x $var'access"
80 gdb_test_multiple $test $test {
81 -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
84 -re "\\$\[0-9\]+ = 0x\[a-f0-9+\]+.*$gdb_prompt $" {
85 fail "$test (prints unexpected address)"
93 gdb_reinitialize_dir $srcdir/$subdir
96 runto defs.adb:[gdb_get_line_number "marker here" ${testdir}/defs.adb ]
98 set s1_address [get_address "s1"]
100 test_p_x "s" "(x => 0xd, y => 0x13)" $s1_address
102 test_p_x_addr "s" $s1_address