]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-prettyprint.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-prettyprint.exp
CommitLineData
8acc9f48 1# Copyright (C) 2008-2013 Free Software Foundation, Inc.
a6bac58e
TT
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# This file is part of the GDB testsuite. It tests Python-based
17# pretty-printing for the CLI.
18
a2c09bd0
DE
19load_lib gdb-python.exp
20
b4a58790 21standard_testfile
a6bac58e
TT
22
23# Start with a fresh gdb.
24gdb_exit
25gdb_start
f6bbabf0
PM
26
27# Skip all tests if Python scripting is not enabled.
28if { [skip_python_tests] } { continue }
a6bac58e 29
db8e4570
UW
30proc run_lang_tests {exefile lang} {
31 global srcdir subdir srcfile testfile hex
32 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${exefile}" executable "debug $lang"] != "" } {
a6bac58e
TT
33 untested "Couldn't compile ${srcfile} in $lang mode"
34 return -1
35 }
36
37 set nl "\[\r\n\]+"
38
39 # Start with a fresh gdb.
40 gdb_exit
41 gdb_start
42 gdb_reinitialize_dir $srcdir/$subdir
db8e4570 43 gdb_load ${exefile}
a6bac58e 44
a6bac58e
TT
45 if ![runto_main ] then {
46 perror "couldn't run to breakpoint"
47 return
48 }
49
89493308 50 gdb_test_no_output "set print pretty on"
a6bac58e
TT
51
52 gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
53 ".*Breakpoint.*"
54 gdb_test "continue" ".*Breakpoint.*"
f24fce77
NF
55
56 set remote_python_file [remote_download host ${srcdir}/${subdir}/${testfile}.py]
57
9325cb04 58 gdb_test_no_output "python exec (open ('${remote_python_file}').read ())"
a6bac58e
TT
59
60 gdb_test "print ss" " = a=< a=<1> b=<$hex>> b=< a=<2> b=<$hex>>"
61 gdb_test "print ssa\[1\]" " = a=< a=<5> b=<$hex>> b=< a=<6> b=<$hex>>"
62 gdb_test "print ssa" " = {a=< a=<3> b=<$hex>> b=< a=<4> b=<$hex>>, a=< a=<5> b=<$hex>> b=< a=<6> b=<$hex>>}"
63
91158a56
TT
64 gdb_test "print arraystruct" " = {$nl *y = 7, *$nl *x = { a=<23> b=<$hex>, a=<24> b=<$hex>} *$nl *}"
65
a6bac58e
TT
66 if {$lang == "c++"} {
67 gdb_test "print cps" "= a=<8> b=<$hex>"
68 gdb_test "print cpss" " = {$nl *zss = 9, *$nl *s = a=<10> b=<$hex>$nl}"
69 gdb_test "print cpssa\[0\]" " = {$nl *zss = 11, *$nl *s = a=<12> b=<$hex>$nl}"
70 gdb_test "print cpssa\[1\]" " = {$nl *zss = 13, *$nl *s = a=<14> b=<$hex>$nl}"
71 gdb_test "print cpssa" " = {{$nl *zss = 11, *$nl *s = a=<12> b=<$hex>$nl *}, {$nl *zss = 13, *$nl *s = a=<14> b=<$hex>$nl *}}"
72 gdb_test "print sss" "= a=<15> b=< a=<8> b=<$hex>>"
73 gdb_test "print ref" "= a=<15> b=< a=<8> b=<$hex>>"
74 gdb_test "print derived" \
75 " = \{.*<Vbase1> = pp class name: Vbase1.*<Vbase2> = \{.*<VirtualTest> = pp value variable is: 1,.*members of Vbase2:.*_vptr.Vbase2 = $hex.*<Vbase3> = \{.*members of Vbase3.*members of Derived:.*value = 2.*"
fbb8f299 76 gdb_test "print ns " "\"embedded\\\\000null\\\\000string\""
7a9fe101
PM
77 gdb_py_test_silent_cmd "set print elements 3" "" 1
78 gdb_test "print ns" "emb\.\.\.."
79 gdb_py_test_silent_cmd "set print elements 10" "" 1
80 gdb_test "print ns" "embedded\\\\000n\.\.\.."
81 gdb_py_test_silent_cmd "set print elements 200" "" 1
a6bac58e
TT
82 }
83
621c8364
TT
84 gdb_test "print ns2" ".error reading variable: Address 0x0 out of bounds."
85
269f82e5
PP
86 gdb_test "print x" " = \"this is x\""
87 gdb_test "print cstring" " = \"const string\""
a6bac58e 88
a81766d8 89 gdb_test "print estring" " = \"embedded x\\\\201\\\\202\\\\203\\\\204\""
3a772aa4
TT
90
91 gdb_test_no_output "python pp_ls_encoding = 'UTF-8'"
92 gdb_test "print estring2" "\"embedded \", <incomplete sequence \\\\302>"
93
80b6e756 94 gdb_test_no_output "set python print-stack full"
e1ab1f9c
JK
95 gdb_test "print hint_error" "Exception: hint failed\r\nhint_error_val"
96
269f82e5 97 gdb_test "print c" " = container \"container\" with 2 elements = {$nl *.0. = 23,$nl *.1. = 72$nl}"
a6bac58e 98
79f283fe 99 gdb_test "print nstype" " = {$nl *.0. = 7,$nl *.1. = 42$nl}"
a81766d8
TT
100
101 gdb_test_no_output "set print pretty off"
102 gdb_test "print nstype" " = {.0. = 7, .1. = 42}" \
103 "print nstype on one line"
104
fda326dd 105 gdb_continue_to_end
f24fce77
NF
106
107 remote_file host delete ${remote_python_file}
a6bac58e
TT
108}
109
db8e4570
UW
110run_lang_tests "${binfile}" "c"
111run_lang_tests "${binfile}-cxx" "c++"
967cf477
DE
112
113# Run various other tests.
114
967cf477
DE
115# Start with a fresh gdb.
116gdb_exit
117gdb_start
118gdb_reinitialize_dir $srcdir/$subdir
119gdb_load ${binfile}
120
121if ![runto_main ] then {
122 perror "couldn't run to breakpoint"
123 return
124}
125
967cf477
DE
126set remote_python_file [remote_download host ${srcdir}/${subdir}/${testfile}.py]
127
9325cb04 128gdb_test_no_output "python exec (open ('${remote_python_file}').read ())"
967cf477 129
8f043999
JK
130gdb_breakpoint [gdb_get_line_number "eval-break"]
131gdb_continue_to_breakpoint "eval-break" ".* eval-break .*"
132
133gdb_test "info locals" "eval9 = eval=<123456789>"
134
135gdb_test "b [gdb_get_line_number {break to inspect} ${testfile}.c ]" \
136 ".*Breakpoint.*"
137gdb_test "continue" ".*Breakpoint.*"
138
967cf477
DE
139gdb_test "print ss" " = a=< a=<1> b=<$hex>> b=< a=<2> b=<$hex>>" \
140 "print ss enabled #1"
141
f6978de9 142gdb_test_no_output "python disable_lookup_function ()"
967cf477
DE
143
144gdb_test "print ss" " = {a = {a = 1, b = $hex}, b = {a = 2, b = $hex}}" \
145 "print ss disabled"
146
f6978de9 147gdb_test_no_output "python enable_lookup_function ()"
967cf477
DE
148
149gdb_test "print ss" " = a=< a=<1> b=<$hex>> b=< a=<2> b=<$hex>>" \
150 "print ss enabled #2"
151
152remote_file host delete ${remote_python_file}