Add Guile as an extension language.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.guile / scm-frame-args.exp
1 # Copyright (C) 2014 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 load_lib gdb-guile.exp
17
18 standard_testfile
19
20 if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } {
21 return
22 }
23
24 # Skip all tests if Guile scripting is not enabled.
25 if { [skip_guile_tests] } { continue }
26
27 if ![gdb_guile_runto_main] {
28 return
29 }
30
31 # Give the file a new name so we don't clobber the real one if
32 # objfile == srcdir.
33 set remote_guile_file [gdb_remote_download host \
34 ${srcdir}/${subdir}/${testfile}.scm \
35 ${subdir}/t-${testfile}.scm]
36
37 gdb_scm_load_file "$remote_guile_file" "load script"
38
39 gdb_breakpoint [gdb_get_line_number "break-here"]
40 gdb_continue_to_breakpoint "break-here" ".* break-here .*"
41
42 # Test all combinations with raw off.
43
44 gdb_test_no_output "set print raw frame-arguments off"
45
46 gdb_test_no_output "set print frame-arguments none"
47 gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
48 "frame pretty,none"
49
50 #gdb_test_no_output "set guile print-stack full"
51
52 gdb_test_no_output "set print frame-arguments scalars"
53 gdb_test "frame" ".*foo \\(x=42, ss=super struct = {\[.\]{3}}\\).*" \
54 "frame pretty,scalars"
55
56 gdb_test_no_output "set print frame-arguments all"
57 gdb_test "frame" \
58 ".*foo \\(x=42, ss=super struct = {a = m=<1>, b = m=<2>}\\).*" \
59 "frame pretty,all"
60
61 # Test all combinations with raw on.
62
63 gdb_test_no_output "set print raw frame-arguments on"
64
65 gdb_test_no_output "set print frame-arguments none"
66 gdb_test "frame" ".*foo \\(x=\[.\]{3}, ss=\[.\]{3}\\).*" \
67 "frame raw,none"
68
69 gdb_test_no_output "set print frame-arguments scalars"
70 gdb_test "frame" ".*foo \\(x=42, ss=\[.\]{3}\\).*" \
71 "frame raw,scalars"
72
73 gdb_test_no_output "set print frame-arguments all"
74 gdb_test "frame" \
75 ".*foo \\(x=42, ss={a = {m = 1}, b = {m = 2}}\\).*" \
76 "frame raw,all"
This page took 0.030418 seconds and 4 git commands to generate.