2012-01-16 Pedro Alves <palves@redhat.com>
[external/binutils.git] / gdb / testsuite / gdb.ada / array_return.exp
1 # Copyright 2005-2012 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 load_lib "ada.exp"
17
18 if { [skip_ada_tests] } { return -1 }
19
20 set testdir "array_return"
21 set testfile "${testdir}/p"
22 set srcfile ${srcdir}/${subdir}/${testfile}.adb
23 set binfile ${objdir}/${subdir}/${testfile}
24
25 file mkdir ${objdir}/${subdir}/${testdir}
26 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
27     return -1
28 }
29
30 clean_restart ${testfile}
31
32 # Start the inferior
33
34 if ![runto_main] then {
35    fail "Cannot run to main, testcase aborted"
36    return 0
37 }
38
39 # Create a breakpoint in each function from which we want to test
40 # the "finish" command.
41
42 gdb_test "break create_small" \
43          "Breakpoint \[0-9\]+ at.*: file .*pck.adb, line \[0-9\]+." \
44          "insert breakpoint in create_small"
45
46 gdb_test "break create_large" \
47          "Breakpoint \[0-9\]+ at.*: file .*pck.adb, line \[0-9\]+." \
48          "insert breakpoint in create_large"
49
50 gdb_test "break create_small_float_vector" \
51          "Breakpoint \[0-9\]+ at.*: file .*pck.adb, line \[0-9\]+." \
52          "insert breakpoint in create_small_float_vector"
53
54 # Then continue until reaching the first breakpoint inside Create_Small,
55 # and then do a "finish".
56
57 gdb_test "cont" \
58          "Breakpoint \[0-9\]+, pck.create_small \\(\\).*" \
59          "Continuing to Create_Small"
60
61 gdb_test "finish" \
62          "Value returned is \\\$\[0-9\]+ = \\(1, 1\\)" \
63          "value printed by finish of Create_Small"
64
65 # Now continue until reaching the second breakpoint inside Create_Large,
66 # and then do another "finish".
67
68 gdb_test "cont" \
69          "Breakpoint \[0-9\]+, pck.create_large \\(\\).*" \
70          "Continuing to Create_Large"
71
72 # On hppa32, the value returned is too large to be returned via a register.
73 # Instead, it is returned using the struct convention, and the debugger
74 # unfortunately cannot find the address of the result.  The following
75 # test is therefore expected to fail for all hppa targets except hppa64.
76 if { ! [istarget "hppa*64*-*-*"] } then {
77   setup_xfail "hppa*-*-*"
78 }
79
80 gdb_test "finish" \
81          "Value returned is \\\$\[0-9\]+ = \\(2, 2, 2, 2\\)" \
82          "value printed by finish of Create_Large"
83
84 # Now continue until reaching the third breakpoint, and then do another
85 # "finish" again.
86
87 gdb_test "cont" \
88          "Breakpoint \[0-9\]+, pck.create_small_float_vector \\(\\).*" \
89          "Continuing to Create_Small_Float_Vector"
90
91 gdb_test "finish" \
92          "Value returned is \\\$\[0-9\]+ = \\(4.25, 4.25\\)" \
93          "value printed by finish of Create_Small_Float_Vector"
94