OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gdb-7.2/] [gdb/] [testsuite/] [gdb.ada/] [array_return.exp] - Blame information for rev 394

Go to most recent revision | Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.