* NEWS: Mention "set print raw frame-arguments".
[platform/upstream/binutils.git] / gdb / testsuite / gdb.python / py-frame-args.exp
1 # Copyright (C) 2013 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 standard_testfile
17
18 if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
19     return -1
20 }
21
22 # Skip all tests if Python scripting is not enabled.
23 if { [skip_python_tests] } { continue }
24
25 if ![runto_main] {
26     return -1
27 }
28
29 set remote_python_file [remote_download host ${srcdir}/${subdir}/${testfile}.py]
30
31 gdb_test_no_output "python exec (open ('${remote_python_file}').read ())"
32
33 gdb_breakpoint [gdb_get_line_number "break-here"]
34 gdb_continue_to_breakpoint "break-here" ".* break-here .*"
35
36 # Test all combinations with raw off.
37
38 gdb_test_no_output "set print raw frame-arguments off"
39
40 gdb_test_no_output "set print frame-arguments none"
41 gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
42     "frame pretty,none"
43
44 gdb_test_no_output "set print frame-arguments scalars"
45 gdb_test "frame" ".*foo \\(x=42, ss=super struct = {\[.\]{3}}\\).*" \
46     "frame pretty,scalars"
47
48 gdb_test_no_output "set print frame-arguments all"
49 gdb_test "frame" \
50     ".*foo \\(x=42, ss=super struct = {a = m=<1>, b = m=<2>}\\).*" \
51     "frame pretty,all"
52
53 # Test all combinations with raw on.
54
55 gdb_test_no_output "set print raw frame-arguments on"
56
57 gdb_test_no_output "set print frame-arguments none"
58 gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
59     "frame raw,none"
60
61 gdb_test_no_output "set print frame-arguments scalars"
62 gdb_test "frame" ".*foo \\(x=42, ss=\[.\]{3}\\).*" \
63     "frame raw,scalars"
64
65 gdb_test_no_output "set print frame-arguments all"
66 gdb_test "frame" \
67     ".*foo \\(x=42, ss={a = {m = 1}, b = {m = 2}}\\).*" \
68     "frame raw,all"
69
70 remote_file host delete ${remote_python_file}