1 # Copyright (C) 2014-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 load_lib gdb-guile.exp
18 require allow_guile_tests
22 if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
26 if ![gdb_guile_runto_main] {
30 set remote_guile_file [gdb_remote_download host \
31 ${srcdir}/${subdir}/${testfile}.scm]
33 gdb_scm_load_file "$remote_guile_file" "load script"
35 gdb_breakpoint [gdb_get_line_number "break-here"]
36 gdb_continue_to_breakpoint "break-here" ".* break-here .*"
38 # Test all combinations with raw off.
39 gdb_test_no_output "set print raw-frame-arguments off"
40 with_test_prefix "raw-frame-arguments=off" {
41 gdb_test_no_output "set print frame-arguments none"
42 gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
45 gdb_test_no_output "set print frame-arguments scalars"
46 gdb_test "frame" ".*foo \\(x=42, ss=super struct = {\[.\]{3}}\\).*" \
47 "frame pretty,scalars"
49 gdb_test_no_output "set print frame-arguments all"
51 ".*foo \\(x=42, ss=super struct = {a = m=<1>, b = m=<2>}\\).*" \
55 # Test all combinations with raw on.
56 gdb_test_no_output "set print raw-frame-arguments on"
57 with_test_prefix "raw-frame-arguments=on" {
58 gdb_test_no_output "set print frame-arguments none"
59 gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
62 gdb_test_no_output "set print frame-arguments scalars"
63 gdb_test "frame" ".*foo \\(x=42, ss=\[.\]{3}\\).*" \
66 gdb_test_no_output "set print frame-arguments all"
68 ".*foo \\(x=42, ss={a = {m = 1}, b = {m = 2}}\\).*" \