Automatic date update in version.in
[binutils-gdb.git] / gdb / testsuite / gdb.python / py-frame-args.exp
blob4fc8f0aaf606dfce44cf49f05b67144bc6e4d010
1 # Copyright (C) 2013-2024 Free Software Foundation, Inc.
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.
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.
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/>.
16 standard_testfile
18 require allow_python_tests
20 if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
21     return -1
24 if ![runto_main] {
25     return -1
28 set remote_python_file [gdb_remote_download host \
29                             ${srcdir}/${subdir}/${testfile}.py]
31 gdb_test_no_output "source ${remote_python_file}" "load python file"
33 gdb_breakpoint [gdb_get_line_number "break-here"]
34 gdb_continue_to_breakpoint "break-here" ".* break-here .*"
36 # Test raw-frame-arguments on backtrace with and without frame-filter
37 gdb_test "interpreter-exec mi \"-enable-frame-filters\"" \
38     "done"
39 foreach_with_prefix filtered {enable disable} {
40     gdb_test_no_output "$filtered frame-filter global BasicFrameFilter"
42     gdb_test "bt 1" \
43         ".*foo \\(x=42, ss=super struct = {\[.\]{3}}\\).*" \
44         "bt pretty"
46     gdb_test "bt -raw-frame-arguments on 1" \
47         ".*foo \\(x=42, ss=\[.\]{3}\\).*" \
48         "bt raw"
50     gdb_test "interpreter-exec mi \"-stack-list-arguments 1\"" \
51         ".*name=\"ss\",value=\"super struct =.*" \
52         "mi bt pretty"
54     gdb_test_no_output "set print raw-frame-arguments on"
55     gdb_test "interpreter-exec mi \"-stack-list-arguments 1\"" \
56         ".*name=\"ss\",value=\".a =.*" \
57         "mi bt raw"
58     gdb_test_no_output "set print raw-frame-arguments off"
60     # "set print raw-values" should not affect frame arguments
61     gdb_test_no_output "set print raw-values on"
62     gdb_test "bt 1" \
63         ".*foo \\(x=42, ss=super struct = {\[.\]{3}}\\).*" \
64         "bt pretty,raw-values"
66     gdb_test "interpreter-exec mi \"-stack-list-arguments 1\"" \
67         ".*name=\"ss\",value=\"super struct =.*" \
68         "mi bt pretty,raw-values"
69     gdb_test_no_output "set print raw-values off"
72 # Test all combinations with raw off.
74 gdb_test_no_output "set print raw-frame-arguments off"
76 with_test_prefix "pretty frame args" {
77     gdb_test_no_output "set print frame-arguments none"
78     gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
79         "none"
81     gdb_test_no_output "set print frame-arguments scalars"
82     gdb_test "frame" ".*foo \\(x=42, ss=super struct = {\[.\]{3}}\\).*" \
83         "scalars"
85     gdb_test_no_output "set print frame-arguments all"
86     gdb_test "frame" \
87         ".*foo \\(x=42, ss=super struct = {a = m=<1>, b = m=<2>}\\).*" \
88         "all"
91 # Test all combinations with raw on.
93 gdb_test_no_output "set print raw-frame-arguments on"
95 with_test_prefix "raw frame args" {
96     gdb_test_no_output "set print frame-arguments none"
97     gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
98         "none"
100     gdb_test_no_output "set print frame-arguments scalars"
101     gdb_test "frame" ".*foo \\(x=42, ss=\[.\]{3}\\).*" \
102         "scalars"
104     gdb_test_no_output "set print frame-arguments all"
105     gdb_test "frame" \
106         ".*foo \\(x=42, ss={a = {m = 1}, b = {m = 2}}\\).*" \
107         "all"