Add SIB.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / formatted_ref.exp
CommitLineData
4c38e0a4 1# Copyright 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
8d04f9f0
JB
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# Author: P. N. Hilfinger, AdaCore Inc.
17
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.
c332165e
JG
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.
8d04f9f0
JB
26
27if $tracelevel then {
28 strace $tracelevel
29}
30
31load_lib "ada.exp"
32
33set testdir "formatted_ref"
34set testfile "${testdir}/formatted_ref"
35set srcfile ${srcdir}/${subdir}/${testfile}.adb
36set binfile ${objdir}/${subdir}/${testfile}
37
38
39file mkdir ${objdir}/${subdir}/${testdir}
40if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
41 untested formatted-ref.exp
42 return -1
43}
44
45proc get_address { var } {
46 global expect_out
47 global gdb_prompt
48
49 send_gdb "print $var'access\n"
50 gdb_expect {
51 -re "\\$\[0-9\]+ = \\(.*\\) (0x\[0-9a-f\]+).*$gdb_prompt $" {
52 return $expect_out(1,string)
53 }
54 timeout {
55 perror "couldn't find address of $var"
56 return ""
57 }
58 }
59}
60
61proc test_p_x { var val addr } {
62 global gdb_prompt
63
64 set test "print/x $var"
65 gdb_test_multiple "$test" $test {
66 -re "\\$\[0-9\]+ = [string_to_regexp $val].*$gdb_prompt $" {
67 pass $test
68 }
69 -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
70 fail "$test (prints just address)"
71 }
72 -re "\\$\[0-9\]+ = 0x\[a-f0-9\]+.*$gdb_prompt $" {
73 fail "$test (prints unexpected address)"
74 }
75 }
76 return 0
77}
78
79proc test_p_x_addr { var addr } {
80 global gdb_prompt
81
82 set test "print/x $var'access"
83 gdb_test_multiple $test $test {
84 -re "\\$\[0-9\]+ = $addr.*$gdb_prompt $" {
85 pass $test
86 }
87 -re "\\$\[0-9\]+ = 0x\[a-f0-9+\]+.*$gdb_prompt $" {
88 fail "$test (prints unexpected address)"
89 }
90 }
91 return 0
92}
93
c332165e
JG
94proc test_p_op1_equals_op2 {op1 op2} {
95 set test "print $op1 = $op2"
96 gdb_test $test "\\$\[0-9\]+ = true"
97}
98
8d04f9f0
JB
99gdb_exit
100gdb_start
101gdb_reinitialize_dir $srcdir/$subdir
102gdb_load ${binfile}
103
104runto defs.adb:[gdb_get_line_number "marker here" ${testdir}/defs.adb ]
105
106set s1_address [get_address "s1"]
107
108test_p_x "s" "(x => 0xd, y => 0x13)" $s1_address
109
110test_p_x_addr "s" $s1_address
c332165e
JG
111
112test_p_op1_equals_op2 "s.x" "13"
This page took 0.326527 seconds and 4 git commands to generate.