1# Copyright (C) 2014-2020 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
16load_lib gdb-guile.exp
17
18standard_testfile
19
20if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
21    return
22}
23
24# Skip all tests if Guile scripting is not enabled.
25if { [skip_guile_tests] } { continue }
26
27if ![gdb_guile_runto_main] {
28    return
29}
30
31set remote_guile_file [gdb_remote_download host \
32			   ${srcdir}/${subdir}/${testfile}.scm]
33
34gdb_scm_load_file "$remote_guile_file" "load script"
35
36gdb_breakpoint [gdb_get_line_number "break-here"]
37gdb_continue_to_breakpoint "break-here" ".* break-here .*"
38
39# Test all combinations with raw off.
40
41gdb_test_no_output "set print raw-frame-arguments off"
42
43gdb_test_no_output "set print frame-arguments none"
44gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
45    "frame pretty,none"
46
47#gdb_test_no_output "set guile print-stack full"
48
49gdb_test_no_output "set print frame-arguments scalars"
50gdb_test "frame" ".*foo \\(x=42, ss=super struct = {\[.\]{3}}\\).*" \
51    "frame pretty,scalars"
52
53gdb_test_no_output "set print frame-arguments all"
54gdb_test "frame" \
55    ".*foo \\(x=42, ss=super struct = {a = m=<1>, b = m=<2>}\\).*" \
56    "frame pretty,all"
57
58# Test all combinations with raw on.
59
60gdb_test_no_output "set print raw-frame-arguments on"
61
62gdb_test_no_output "set print frame-arguments none"
63gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
64    "frame raw,none"
65
66gdb_test_no_output "set print frame-arguments scalars"
67gdb_test "frame" ".*foo \\(x=42, ss=\[.\]{3}\\).*" \
68    "frame raw,scalars"
69
70gdb_test_no_output "set print frame-arguments all"
71gdb_test "frame" \
72    ".*foo \\(x=42, ss={a = {m = 1}, b = {m = 2}}\\).*" \
73    "frame raw,all"
74