2012-01-16 Pedro Alves <palves@redhat.com>
[external/binutils.git] / gdb / testsuite / gdb.base / frame-args.exp
1 # Copyright 2007-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 set testfile "frame-args"
17 set srcfile ${testfile}.c
18 set binfile ${objdir}/${subdir}/${testfile}
19 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
20     untested "Couldn't compile ${srcfile}"
21     return -1
22 }
23
24 gdb_exit
25 gdb_start
26 gdb_reinitialize_dir $srcdir/$subdir
27 gdb_load ${binfile}
28
29 if ![runto break_me] then {
30   perror "Couldn't run ${testfile}"
31   return
32 }
33
34 # Test with "print frame-arguments" set to "all"
35
36 gdb_test_no_output "set print frame-arguments all" \
37          "set print frame-arguments all"
38 gdb_test "frame 1" \
39          ".*in call_me \\(i=3, f=5, s=({a = 3, b = 5}|<optimized out>), ss=0x\[0-9a-f\]\+, u=({.*}|<optimized out>), e=green\\) at .*frame-args\\.c:.*" \
40          "frame 1 with print frame-arguments set to all"
41
42 # Test with "print frame-arguments" set to "scalars"
43
44 gdb_test_no_output "set print frame-arguments scalars" \
45          "set print frame-arguments scalars"
46 gdb_test "frame 1" \
47          ".*in call_me \\(i=3, f=5, s=\\.\\.\\., ss=0x\[0-9a-f\]\+, u=\\.\\.\\., e=green\\) at .*frame-args\\.c:.*" \
48          "frame 1 with print frame-arguments set to scalars"
49
50 # Test with "print frame-arguments" set to "none"
51
52 gdb_test_no_output "set print frame-arguments none" \
53          "set print frame-arguments none"
54 gdb_test "frame 1" \
55          ".*in call_me \\(i=\\.\\.\\., f=\\.\\.\\., s=\\.\\.\\., ss=\\.\\.\\., u=\\.\\.\\., e=\\.\\.\\.\\) at .*frame-args\\.c:.*" \
56          "frame 1 with print frame-arguments set to none"
57
58