]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.guile/scm-frame-args.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.guile / scm-frame-args.exp
CommitLineData
1d506c26 1# Copyright (C) 2014-2024 Free Software Foundation, Inc.
ed3ef339
DE
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
16load_lib gdb-guile.exp
17
e71b6502
TT
18require allow_guile_tests
19
ed3ef339
DE
20standard_testfile
21
5b362f04 22if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
ed3ef339
DE
23 return
24}
25
ed3ef339
DE
26if ![gdb_guile_runto_main] {
27 return
28}
29
ed3ef339 30set remote_guile_file [gdb_remote_download host \
df1b803a 31 ${srcdir}/${subdir}/${testfile}.scm]
ed3ef339
DE
32
33gdb_scm_load_file "$remote_guile_file" "load script"
34
35gdb_breakpoint [gdb_get_line_number "break-here"]
36gdb_continue_to_breakpoint "break-here" ".* break-here .*"
37
38# Test all combinations with raw off.
2daf894e 39gdb_test_no_output "set print raw-frame-arguments off"
62f2f198
AB
40with_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}\\).*" \
43 "frame pretty,none"
44
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"
48
49 gdb_test_no_output "set print frame-arguments all"
50 gdb_test "frame" \
51 ".*foo \\(x=42, ss=super struct = {a = m=<1>, b = m=<2>}\\).*" \
52 "frame pretty,all"
53}
ed3ef339
DE
54
55# Test all combinations with raw on.
2daf894e 56gdb_test_no_output "set print raw-frame-arguments on"
62f2f198
AB
57with_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}\\).*" \
60 "frame raw,none"
61
62 gdb_test_no_output "set print frame-arguments scalars"
63 gdb_test "frame" ".*foo \\(x=42, ss=\[.\]{3}\\).*" \
64 "frame raw,scalars"
65
66 gdb_test_no_output "set print frame-arguments all"
67 gdb_test "frame" \
68 ".*foo \\(x=42, ss={a = {m = 1}, b = {m = 2}}\\).*" \
69 "frame raw,all"
70}